From 10f6ad0c6416ee7b84427b30a3068fec2005e6aa Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Wed, 24 Mar 2021 16:18:02 -0700 Subject: [PATCH 1/3] Change the accessbility to virtual for Resource.Id --- .../Azure.ResourceManager.Core/src/Resources/Resource.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs index 86a35ac05cf7..a8638d1c689b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs @@ -14,7 +14,7 @@ public abstract class Resource : IEquatable, IEquatable, IComp /// /// Gets or sets the resource identifier. /// - public abstract ResourceIdentifier Id { get; protected set; } + public virtual ResourceIdentifier Id { get; protected set; } /// /// Gets the name. From 03d54f9fa507897f0e8177a82bcaeb712cae6a0f Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 10 Jun 2021 17:16:06 -0700 Subject: [PATCH 2/3] Add GenericResourceOperations tests --- .../GenericResourceOperationsTests.cs | 288 ++ .../AddTag().json | 4295 ++++++++++++++++ .../AddTag()Async.json | 4295 ++++++++++++++++ .../Delete().json | 4310 ++++++++++++++++ .../Delete()Async.json | 4308 ++++++++++++++++ .../GenericResourceOperationsTests/Get().json | 4280 ++++++++++++++++ .../Get()Async.json | 4280 ++++++++++++++++ .../RemoveTag().json | 4362 +++++++++++++++++ .../RemoveTag()Async.json | 4362 +++++++++++++++++ .../SetTags().json | 4295 ++++++++++++++++ .../SetTags()Async.json | 4295 ++++++++++++++++ .../StartAddTag().json | 4295 ++++++++++++++++ .../StartAddTag()Async.json | 4295 ++++++++++++++++ .../StartDelete().json | 4308 ++++++++++++++++ .../StartDelete()Async.json | 4308 ++++++++++++++++ .../StartRemoveTag().json | 4362 +++++++++++++++++ .../StartRemoveTag()Async.json | 4362 +++++++++++++++++ .../StartSetTags().json | 4297 ++++++++++++++++ .../StartSetTags()Async.json | 4295 ++++++++++++++++ .../StartUpdate().json | 4284 ++++++++++++++++ .../StartUpdate()Async.json | 4284 ++++++++++++++++ .../Update().json | 4286 ++++++++++++++++ .../Update()Async.json | 4284 ++++++++++++++++ 23 files changed, 95030 insertions(+) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs new file mode 100644 index 000000000000..dc7601ee4fcd --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs @@ -0,0 +1,288 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.ResourceManager.Core.Tests +{ + public class GenericResourceOperationsTests : ResourceManagerTestBase + { + public GenericResourceOperationsTests(bool isAsync) + : base(isAsync)//, RecordedTestMode.Record) + { + } + + [TestCase] + [RecordedTest] + public async Task Get() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset2 = await aset1.GetAsync(); + Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); + //Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + Assert.AreEqual(aset1.Data.Tags, aset2.Data.Tags); + } + + [TestCase] + [RecordedTest] + public async Task Delete() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + GenericResource aset = await CreateGenericAvailabilitySetAsync(rg.Id); + await aset.DeleteAsync(); + + var fakeId = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/foo-1"; + Assert.ThrowsAsync(async () => _ = await CreateGenericAvailabilitySetAsync(fakeId)); + } + + [TestCase] + [RecordedTest] + public async Task StartDelete() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset = await createOp.WaitForCompletionAsync(); + 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] + [RecordedTest] + public async Task Update() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); + var data = new GenericResourceData(); + data.Location = LocationData.EastUS2; + GenericResource aset2 = await aset1.UpdateAsync(data); + Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); + Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + Assert.AreEqual(aset1.Data.Tags, aset2.Data.Tags); + + Assert.ThrowsAsync(async () => _ = await aset1.UpdateAsync(null)); + } + + [TestCase] + [RecordedTest] + public async Task StartUpdate() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset1 = await createOp.WaitForCompletionAsync(); + var data = new GenericResourceData(); + data.Location = LocationData.EastUS2; + var updateOp = await aset1.StartUpdateAsync(data); + GenericResource aset2 = await updateOp.WaitForCompletionAsync(); + Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); + Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + Assert.AreEqual(aset1.Data.Tags, aset2.Data.Tags); + + Assert.ThrowsAsync(async () => + { + var updateOp = await aset1.StartUpdateAsync(null); + _ = await updateOp.WaitForCompletionAsync(); + }); + } + + [TestCase] + [RecordedTest] + public async Task AddTag() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); + Assert.AreEqual(0, aset1.Data.Tags.Count); + GenericResource aset2 = await aset1.AddTagAsync("key", "value"); + Assert.AreEqual(1, aset2.Data.Tags.Count); + Assert.IsTrue(aset2.Data.Tags.Contains(new KeyValuePair("key", "value"))); + Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); + Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + } + + [TestCase] + [RecordedTest] + public async Task StartAddTag() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset1 = await createOp.WaitForCompletionAsync(); + Assert.AreEqual(0, aset1.Data.Tags.Count); + var addTagOp = await aset1.StartAddTagAsync("key", "value"); + GenericResource aset2 = await addTagOp.WaitForCompletionAsync(); + Assert.AreEqual(1, aset2.Data.Tags.Count); + Assert.IsTrue(aset2.Data.Tags.Contains(new KeyValuePair("key", "value"))); + Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); + Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + } + + [TestCase] + [RecordedTest] + public async Task SetTags() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); + Assert.AreEqual(0, aset1.Data.Tags.Count); + var tags = new Dictionary() + { + { "key", "value"} + }; + GenericResource aset2 = await aset1.SetTagsAsync(tags); + Assert.AreEqual(tags, aset2.Data.Tags); + Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); + Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + } + + [TestCase] + [RecordedTest] + public async Task StartSetTags() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset1 = await createOp.WaitForCompletionAsync(); + Assert.AreEqual(0, aset1.Data.Tags.Count); + var tags = new Dictionary() + { + { "key", "value"} + }; + var setTagsOp = await aset1.StartSetTagsAsync(tags); + GenericResource aset2 = await setTagsOp.WaitForCompletionAsync(); + Assert.AreEqual(tags, aset2.Data.Tags); + Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); + Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + } + + [TestCase] + [RecordedTest] + public async Task RemoveTag() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); + var tags1 = new Dictionary() + { + { "k1", "v1"}, + { "k2", "v2"} + }; + GenericResource aset2 = await aset1.SetTagsAsync(tags1); + GenericResource aset3 = await aset2.RemoveTagAsync("k1"); + var tags2 = new Dictionary() + { + { "k2", "v2"} + }; + Assert.AreEqual(tags2, aset3.Data.Tags); + Assert.AreEqual(aset1.Data.Id, aset3.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset3.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset3.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset3.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset3.Data.Plan); + Assert.AreEqual(aset1.Data.Properties, aset3.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset3.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset3.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset3.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset3.Data.Identity); + } + + [TestCase] + [RecordedTest] + public async Task StartRemoveTag() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset1 = await createOp.WaitForCompletionAsync(); + var tags1 = new Dictionary() + { + { "k1", "v1"}, + { "k2", "v2"} + }; + var setTagsOp = await aset1.StartSetTagsAsync(tags1); + GenericResource aset2 = await setTagsOp.WaitForCompletionAsync(); + var removeTagOp = await aset2.StartRemoveTagAsync("k1"); + GenericResource aset3 = await removeTagOp.WaitForCompletionAsync(); + var tags2 = new Dictionary() + { + { "k2", "v2"} + }; + Assert.AreEqual(tags2, aset3.Data.Tags); + Assert.AreEqual(aset1.Data.Id, aset3.Data.Id); + Assert.AreEqual(aset1.Data.Name, aset3.Data.Name); + Assert.AreEqual(aset1.Data.Type, aset3.Data.Type); + Assert.AreEqual(aset1.Data.Location, aset3.Data.Location); + Assert.AreEqual(aset1.Data.Plan, aset3.Data.Plan); + Assert.AreEqual(aset1.Data.Properties, aset3.Data.Properties); + Assert.AreEqual(aset1.Data.Kind, aset3.Data.Kind); + Assert.AreEqual(aset1.Data.ManagedBy, aset3.Data.ManagedBy); + Assert.AreEqual(aset1.Data.Sku, aset3.Data.Sku); + Assert.AreEqual(aset1.Data.Identity, aset3.Data.Identity); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json new file mode 100644 index 000000000000..c904fd432693 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json @@ -0,0 +1,4295 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc5581414d92451bcb7279cc1a477674", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:41:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "712b6f89-83be-42c6-8718-ac12a6b4e9e3", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "712b6f89-83be-42c6-8718-ac12a6b4e9e3", + "x-ms-routing-request-id": "WESTUS2:20210610T224141Z:712b6f89-83be-42c6-8718-ac12a6b4e9e3" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4108?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-6066f659bdaadf48bb7d3c19db4fe1e1-49fb35814ec73145-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4829e5d3303be24113cec7a9d2840a5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:41:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7ed1b5e1-19d0-458c-a43d-262d369131f1", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "7ed1b5e1-19d0-458c-a43d-262d369131f1", + "x-ms-routing-request-id": "WESTUS2:20210610T224142Z:7ed1b5e1-19d0-458c-a43d-262d369131f1" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108", + "name": "testrg4108", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "95b66f40031585b610c40000c573affa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:41:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "90be115e-f14f-4071-a12c-5e1c119a5da2", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "90be115e-f14f-4071-a12c-5e1c119a5da2", + "x-ms-routing-request-id": "WESTUS2:20210610T224142Z:90be115e-f14f-4071-a12c-5e1c119a5da2" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "39a357b605e61450e97e7f539cf9ed6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:41:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "39a357b605e61450e97e7f539cf9ed6f", + "x-ms-correlation-request-id": "eba9b812-05d9-4c76-9460-9f6b8dbb2f12", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "79d4545a-41e9-419e-ad36-aad774319e3e", + "x-ms-routing-request-id": "WESTUS2:20210610T224143Z:eba9b812-05d9-4c76-9460-9f6b8dbb2f12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2884\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2d1cae1824663a6a1ea2ab968362e816", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "432", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:41:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "2d1cae1824663a6a1ea2ab968362e816", + "x-ms-correlation-request-id": "ad317f44-0e15-4d2e-843b-2cce3564d420", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1195", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "f6261aa5-3b99-4c5a-8907-9bbb91289998", + "x-ms-routing-request-id": "WESTUS2:20210610T224144Z:ad317f44-0e15-4d2e-843b-2cce3564d420" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2884\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "998176862", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json new file mode 100644 index 000000000000..b85435ca7e96 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json @@ -0,0 +1,4295 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc5581414d92451bcb7279cc1a477674", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "456f0e91-0d37-43fc-b486-9eb64ee11803", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "456f0e91-0d37-43fc-b486-9eb64ee11803", + "x-ms-routing-request-id": "WESTUS2:20210611T001115Z:456f0e91-0d37-43fc-b486-9eb64ee11803" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4108?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-d362c40d00440546a0f2e9f18e5e3c86-5e3a5264510da048-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4829e5d3303be24113cec7a9d2840a5d", + "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": "Fri, 11 Jun 2021 00:11:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "695a9c5e-5d14-42bf-a865-ac0593cddc17", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "695a9c5e-5d14-42bf-a865-ac0593cddc17", + "x-ms-routing-request-id": "WESTUS2:20210611T001116Z:695a9c5e-5d14-42bf-a865-ac0593cddc17" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108", + "name": "testrg4108", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "95b66f40031585b610c40000c573affa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bda7c93a-4911-4c25-8147-1cd72338dccd", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "bda7c93a-4911-4c25-8147-1cd72338dccd", + "x-ms-routing-request-id": "WESTUS2:20210611T001116Z:bda7c93a-4911-4c25-8147-1cd72338dccd" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "39a357b605e61450e97e7f539cf9ed6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "39a357b605e61450e97e7f539cf9ed6f", + "x-ms-correlation-request-id": "b0e0fa4e-0ffc-4470-96a4-a438e517112b", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1144", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "358191ff-2a5d-4de5-9626-a3f0874aa312", + "x-ms-routing-request-id": "WESTUS2:20210611T001118Z:b0e0fa4e-0ffc-4470-96a4-a438e517112b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2884\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2d1cae1824663a6a1ea2ab968362e816", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "432", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "2d1cae1824663a6a1ea2ab968362e816", + "x-ms-correlation-request-id": "3219e7cd-a96c-454e-9349-2b95b0f3bc53", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1143", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "99dd67e7-1e76-45b0-9ba3-1b8f3cb6d872", + "x-ms-routing-request-id": "WESTUS2:20210611T001118Z:3219e7cd-a96c-454e-9349-2b95b0f3bc53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2884\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "998176862", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json new file mode 100644 index 000000000000..c4e4962b038b --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json @@ -0,0 +1,4310 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d9122099303d43b650a70ca10d390e27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:01:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "835a3648-179b-4f13-930a-8da2c3397eae", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "835a3648-179b-4f13-930a-8da2c3397eae", + "x-ms-routing-request-id": "WESTUS2:20210611T000158Z:835a3648-179b-4f13-930a-8da2c3397eae" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9648?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-25fb2b93bc1f5948bad568013ab0f6a9-acc5953669cfd541-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "386e6d7ef284715c08a6b7bfa771f853", + "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": "Fri, 11 Jun 2021 00:01:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "216b18df-1868-4a76-b673-fdb126af0240", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "216b18df-1868-4a76-b673-fdb126af0240", + "x-ms-routing-request-id": "WESTUS2:20210611T000159Z:216b18df-1868-4a76-b673-fdb126af0240" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9648", + "name": "testrg9648", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-2fee9adc60a89649a4ac27e5dd2da3ac-480590a39b2b8741-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": "749fc415d8439b03268caa6e801b92ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:01:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a270a227-92de-4932-8404-878f82db3d03", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "a270a227-92de-4932-8404-878f82db3d03", + "x-ms-routing-request-id": "WESTUS2:20210611T000159Z:a270a227-92de-4932-8404-878f82db3d03" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9648/providers/Microsoft.Compute/availabilitySets/test-aset418?api-version=2021-04-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "133", + "Content-Type": "application/json", + "traceparent": "00-2fee9adc60a89649a4ac27e5dd2da3ac-30d5a8c95d5b0641-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "45dc338a1554b52d683589ff84a83614", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "406", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:02:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "45dc338a1554b52d683589ff84a83614", + "x-ms-correlation-request-id": "4d806d0a-7605-40a3-a047-45fce507eb41", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1148", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "9ccd6856-9769-4528-a8c9-fc8e40bfa7cb", + "x-ms-routing-request-id": "WESTUS2:20210611T000200Z:4d806d0a-7605-40a3-a047-45fce507eb41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset418\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9648/providers/Microsoft.Compute/availabilitySets/test-aset418\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9648/providers/Microsoft.Compute/availabilitySets/test-aset418?api-version=2021-04-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3d1dc0240d1bffa297e90c0e4e03167d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 11 Jun 2021 00:02:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "3d1dc0240d1bffa297e90c0e4e03167d", + "x-ms-correlation-request-id": "bf4ae299-2acb-4173-a951-cd5952d8a72f", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1175", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "98c1a2d3-0d9b-41fc-82f0-2aca155f2386", + "x-ms-routing-request-id": "WESTUS2:20210611T000204Z:bf4ae299-2acb-4173-a951-cd5952d8a72f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/foo-1/providers/Microsoft.Compute/availabilitySets/test-aset9771?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8bc4dbfff8f8733f24b29eb72b456886", + "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": "Fri, 11 Jun 2021 00:02:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c9b13669-988b-4aa5-965a-ef08246db184", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "c9b13669-988b-4aa5-965a-ef08246db184", + "x-ms-routing-request-id": "WESTUS2:20210611T000205Z:c9b13669-988b-4aa5-965a-ef08246db184" + }, + "ResponseBody": { + "error": { + "code": "ResourceGroupNotFound", + "message": "Resource group \u0027foo-1\u0027 could not be found." + } + } + } + ], + "Variables": { + "RandomSeed": "555988089", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json new file mode 100644 index 000000000000..15b146ec604e --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json @@ -0,0 +1,4308 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0a5fc4d3a01d2b451e4f6d6d16200650", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4770028f-3fd0-4702-976b-d92fc7d4e765", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "4770028f-3fd0-4702-976b-d92fc7d4e765", + "x-ms-routing-request-id": "WESTUS2:20210611T001119Z:4770028f-3fd0-4702-976b-d92fc7d4e765" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4031?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-eb975dfcc9ae914eab5a68604cf2c823-8333869795a3c34f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2e8bcee25d5a33dd66fede7a55a066df", + "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": "Fri, 11 Jun 2021 00:11:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af74602b-345c-4af5-a184-5d5a3f459035", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "af74602b-345c-4af5-a184-5d5a3f459035", + "x-ms-routing-request-id": "WESTUS2:20210611T001119Z:af74602b-345c-4af5-a184-5d5a3f459035" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4031", + "name": "testrg4031", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2efa60713a4abeb895843118246223fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9fd09abf-2dba-4fbf-bca3-736cdb6dbe43", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "9fd09abf-2dba-4fbf-bca3-736cdb6dbe43", + "x-ms-routing-request-id": "WESTUS2:20210611T001120Z:9fd09abf-2dba-4fbf-bca3-736cdb6dbe43" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4031/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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1a5b738978d78267d6b7a166b1c9ae07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "1a5b738978d78267d6b7a166b1c9ae07", + "x-ms-correlation-request-id": "b775bd2b-fb1b-48e8-87b5-269de1c256db", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1142", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "eea75bcf-0d39-4101-ab8d-fc02677f622d", + "x-ms-routing-request-id": "WESTUS2:20210611T001120Z:b775bd2b-fb1b-48e8-87b5-269de1c256db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2984\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4031/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", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4031/providers/Microsoft.Compute/availabilitySets/test-aset2984?api-version=2021-04-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2ccb7bbbc40af8a1f877579398510dcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 11 Jun 2021 00:11:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "2ccb7bbbc40af8a1f877579398510dcc", + "x-ms-correlation-request-id": "5c8ad794-b5b7-440f-8803-73be2576c30f", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1171", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "7c2f7812-c629-404d-918c-c857baee8b15", + "x-ms-routing-request-id": "WESTUS2:20210611T001121Z:5c8ad794-b5b7-440f-8803-73be2576c30f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/foo-1/providers/Microsoft.Compute/availabilitySets/test-aset5873?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fd36ab05fd82fcc9b5addea704fb8162", + "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": "Fri, 11 Jun 2021 00:11:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1be6044c-0445-4401-9f89-c7c80a66b642", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "1be6044c-0445-4401-9f89-c7c80a66b642", + "x-ms-routing-request-id": "WESTUS2:20210611T001121Z:1be6044c-0445-4401-9f89-c7c80a66b642" + }, + "ResponseBody": { + "error": { + "code": "ResourceGroupNotFound", + "message": "Resource group \u0027foo-1\u0027 could not be found." + } + } + } + ], + "Variables": { + "RandomSeed": "781068341", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json new file mode 100644 index 000000000000..e9ae390a5235 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json @@ -0,0 +1,4280 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "47565bd910ec025fada0ee271971be10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:45:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "73f9704e-021c-4b5c-ac8c-97a58053f07f", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "73f9704e-021c-4b5c-ac8c-97a58053f07f", + "x-ms-routing-request-id": "WESTUS2:20210610T234513Z:73f9704e-021c-4b5c-ac8c-97a58053f07f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4955?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-744fd2403a6cac4c81b30cc99d028348-bb5d64d9a76a7e4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "55db4b26d329c5a5cd3c42477b3efc4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:45:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "70fbecda-5386-4127-ac55-5a50f9bb6cb8", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "70fbecda-5386-4127-ac55-5a50f9bb6cb8", + "x-ms-routing-request-id": "WESTUS2:20210610T234514Z:70fbecda-5386-4127-ac55-5a50f9bb6cb8" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955", + "name": "testrg4955", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "afd58575cf3fe5e51c9c46b220bab6fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:45:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3d4bee5e-069f-41a2-a07c-922e91a82f6d", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "3d4bee5e-069f-41a2-a07c-922e91a82f6d", + "x-ms-routing-request-id": "WESTUS2:20210610T234515Z:3d4bee5e-069f-41a2-a07c-922e91a82f6d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17077101af8ab088811fd31cba3162f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:45:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "17077101af8ab088811fd31cba3162f1", + "x-ms-correlation-request-id": "33a0827f-dd0b-4036-a668-ef539a756638", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1175", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "891ee572-6fdb-453b-9f75-b1ccabcdf417", + "x-ms-routing-request-id": "WESTUS2:20210610T234515Z:33a0827f-dd0b-4036-a668-ef539a756638" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2925\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc7a4d8c38f5c507fd242d1ffbc92bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "436", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:45:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "cc7a4d8c38f5c507fd242d1ffbc92bea", + "x-ms-correlation-request-id": "ef3cae1b-9f7b-4484-b7ad-f26d63c6eebc", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31995", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "4c91a68e-808a-46e6-b691-7ece7ec055ca", + "x-ms-routing-request-id": "WESTUS2:20210610T234515Z:ef3cae1b-9f7b-4484-b7ad-f26d63c6eebc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2925\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2,\r\n", + " \u0022virtualMachines\u0022: []\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1330699705", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json new file mode 100644 index 000000000000..c113c55dafc6 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json @@ -0,0 +1,4280 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "47565bd910ec025fada0ee271971be10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f8549e94-9c4b-4f14-8809-7c3582eccf6e", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "f8549e94-9c4b-4f14-8809-7c3582eccf6e", + "x-ms-routing-request-id": "WESTUS2:20210611T001122Z:f8549e94-9c4b-4f14-8809-7c3582eccf6e" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4955?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-66424eeada4a034aad05f80255606c90-077000c4372ce840-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "55db4b26d329c5a5cd3c42477b3efc4f", + "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": "Fri, 11 Jun 2021 00:11:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0767cb0a-6e52-4c70-8839-2b026856dea3", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "0767cb0a-6e52-4c70-8839-2b026856dea3", + "x-ms-routing-request-id": "WESTUS2:20210611T001123Z:0767cb0a-6e52-4c70-8839-2b026856dea3" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955", + "name": "testrg4955", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "afd58575cf3fe5e51c9c46b220bab6fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "740a0ed5-3025-4ecb-8ddf-a3d2e616a274", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "740a0ed5-3025-4ecb-8ddf-a3d2e616a274", + "x-ms-routing-request-id": "WESTUS2:20210611T001123Z:740a0ed5-3025-4ecb-8ddf-a3d2e616a274" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17077101af8ab088811fd31cba3162f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "17077101af8ab088811fd31cba3162f1", + "x-ms-correlation-request-id": "641790ce-33a1-4f78-ab14-96f30f6334b2", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1141", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "95ff5f52-a73e-4d16-ae6a-143ddb0a55f8", + "x-ms-routing-request-id": "WESTUS2:20210611T001124Z:641790ce-33a1-4f78-ab14-96f30f6334b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2925\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc7a4d8c38f5c507fd242d1ffbc92bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "436", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "cc7a4d8c38f5c507fd242d1ffbc92bea", + "x-ms-correlation-request-id": "c19cf74c-c6d0-4b82-b712-346a1cb4bbc9", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31885", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "5c9a36a3-d455-4bd3-8a68-b5ea88e5058e", + "x-ms-routing-request-id": "WESTUS2:20210611T001124Z:c19cf74c-c6d0-4b82-b712-346a1cb4bbc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2925\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2,\r\n", + " \u0022virtualMachines\u0022: []\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1330699705", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json new file mode 100644 index 000000000000..597ab13ff9a2 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json @@ -0,0 +1,4362 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "28df0f8bb853b846b8d145484618f644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:26:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8f10941b-50bc-44ef-9fa4-236a2b30045e", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "8f10941b-50bc-44ef-9fa4-236a2b30045e", + "x-ms-routing-request-id": "WESTUS2:20210610T232642Z:8f10941b-50bc-44ef-9fa4-236a2b30045e" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6978?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-50fe6e65d5fd7549bf63845972faab52-afb0bc7a8b64f649-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1e5883ebd30b239ffe7bc2990df18d21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:26:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0cfc3444-1092-4372-aa3d-c6d69849e084", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "0cfc3444-1092-4372-aa3d-c6d69849e084", + "x-ms-routing-request-id": "WESTUS2:20210610T232643Z:0cfc3444-1092-4372-aa3d-c6d69849e084" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978", + "name": "testrg6978", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b6f6fc34cf549222749c3ae26ecf7644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:26:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3fd3ba30-2d24-4cc7-be83-3feb4d313fc7", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "3fd3ba30-2d24-4cc7-be83-3feb4d313fc7", + "x-ms-routing-request-id": "WESTUS2:20210610T232643Z:3fd3ba30-2d24-4cc7-be83-3feb4d313fc7" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5582c9c7fae403b04553c841fabe0b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:26:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "b5582c9c7fae403b04553c841fabe0b8", + "x-ms-correlation-request-id": "4482fa2e-8e06-48be-9669-21067e09f5ab", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1189", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "4bedb638-ab53-41d3-9058-69cbf9f29733", + "x-ms-routing-request-id": "WESTUS2:20210610T232644Z:4482fa2e-8e06-48be-9669-21067e09f5ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1398\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "152", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c570544c6b34b4a7c1b6b2ff939d73c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "k1": "v1", + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "445", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:26:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "c570544c6b34b4a7c1b6b2ff939d73c9", + "x-ms-correlation-request-id": "00cfb62b-30ae-469b-9318-0f033993ba4f", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1188", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "e55002af-e9f6-4238-b663-6c2d97ea9551", + "x-ms-routing-request-id": "WESTUS2:20210610T232644Z:00cfb62b-30ae-469b-9318-0f033993ba4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1398\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022k1\u0022: \u0022v1\u0022,\r\n", + " \u0022k2\u0022: \u0022v2\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "142", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ca378fc51a3aba84492f39977d982098", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "428", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:26:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "ca378fc51a3aba84492f39977d982098", + "x-ms-correlation-request-id": "d02532ec-c1f8-4bec-b02b-054ec1bdc2a5", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1186", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "71ed0d50-60ed-4728-a418-15b149ca2ea4", + "x-ms-routing-request-id": "WESTUS2:20210610T232644Z:d02532ec-c1f8-4bec-b02b-054ec1bdc2a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1398\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022k2\u0022: \u0022v2\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1664202294", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json new file mode 100644 index 000000000000..c12e87a16c8f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json @@ -0,0 +1,4362 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "28df0f8bb853b846b8d145484618f644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "96f87a81-a7b4-4bfa-9c06-c9574dbf7e45", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "96f87a81-a7b4-4bfa-9c06-c9574dbf7e45", + "x-ms-routing-request-id": "WESTUS2:20210611T001124Z:96f87a81-a7b4-4bfa-9c06-c9574dbf7e45" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6978?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-2b4e7745c0dab44fb8134c39d7f8a599-b91c4d841c638b42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1e5883ebd30b239ffe7bc2990df18d21", + "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": "Fri, 11 Jun 2021 00:11:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "78508b72-97f9-44fa-88e8-d049e6abf578", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "78508b72-97f9-44fa-88e8-d049e6abf578", + "x-ms-routing-request-id": "WESTUS2:20210611T001125Z:78508b72-97f9-44fa-88e8-d049e6abf578" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978", + "name": "testrg6978", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b6f6fc34cf549222749c3ae26ecf7644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "48e7a12c-6cdb-462a-8c53-da38694c3e9d", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "48e7a12c-6cdb-462a-8c53-da38694c3e9d", + "x-ms-routing-request-id": "WESTUS2:20210611T001125Z:48e7a12c-6cdb-462a-8c53-da38694c3e9d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5582c9c7fae403b04553c841fabe0b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "b5582c9c7fae403b04553c841fabe0b8", + "x-ms-correlation-request-id": "17cb086f-312e-45b6-8adc-42f9267185d2", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1140", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "50a13705-0e4a-4f11-971a-0b12305ce638", + "x-ms-routing-request-id": "WESTUS2:20210611T001126Z:17cb086f-312e-45b6-8adc-42f9267185d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1398\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "152", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c570544c6b34b4a7c1b6b2ff939d73c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "k1": "v1", + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "445", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "c570544c6b34b4a7c1b6b2ff939d73c9", + "x-ms-correlation-request-id": "897bb52a-a574-472d-9df2-d738ed7791e9", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1139", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "1faa6b1b-60c8-44d5-80c0-bde6ec9438d9", + "x-ms-routing-request-id": "WESTUS2:20210611T001126Z:897bb52a-a574-472d-9df2-d738ed7791e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1398\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022k1\u0022: \u0022v1\u0022,\r\n", + " \u0022k2\u0022: \u0022v2\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "142", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ca378fc51a3aba84492f39977d982098", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "428", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "ca378fc51a3aba84492f39977d982098", + "x-ms-correlation-request-id": "1a467db8-fe32-4c43-aae9-71521ea242a4", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1138", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "f7a049a7-1fca-43a1-95a3-db03b20f5cad", + "x-ms-routing-request-id": "WESTUS2:20210611T001127Z:1a467db8-fe32-4c43-aae9-71521ea242a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1398\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022k2\u0022: \u0022v2\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1664202294", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json new file mode 100644 index 000000000000..8584d894d458 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json @@ -0,0 +1,4295 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b62cfa1cf705e7ae3b24fce5a7be1ea6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:17:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5110b3dc-ace4-4582-81fd-2a8aacda7439", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "5110b3dc-ace4-4582-81fd-2a8aacda7439", + "x-ms-routing-request-id": "WESTUS2:20210610T231740Z:5110b3dc-ace4-4582-81fd-2a8aacda7439" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9004?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-7d4f6f5f04807d478b861c9524dd6b45-6de3bf41a8183343-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "808312f14ee5470186a1a81d527e175d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:17:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "468f3aa0-ce85-45a3-8af6-e43920adc7e1", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "468f3aa0-ce85-45a3-8af6-e43920adc7e1", + "x-ms-routing-request-id": "WESTUS2:20210610T231741Z:468f3aa0-ce85-45a3-8af6-e43920adc7e1" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004", + "name": "testrg9004", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "402031f176f7c52d8a851ab0fed85bbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:17:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fc7801ac-6c58-4f2d-90b7-2a70078136e5", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "fc7801ac-6c58-4f2d-90b7-2a70078136e5", + "x-ms-routing-request-id": "WESTUS2:20210610T231742Z:fc7801ac-6c58-4f2d-90b7-2a70078136e5" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a69b5fd537362aab6e7f5605cae8a6e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:17:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "a69b5fd537362aab6e7f5605cae8a6e5", + "x-ms-correlation-request-id": "ec1f592b-317a-422c-abe6-898121667375", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1194", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "d987d5d0-4b4e-4545-9ef1-bd805f9675ff", + "x-ms-routing-request-id": "WESTUS2:20210610T231743Z:ec1f592b-317a-422c-abe6-898121667375" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset5299\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f7d5d4db67cba4886f5d1772028fba1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "432", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:17:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "1f7d5d4db67cba4886f5d1772028fba1", + "x-ms-correlation-request-id": "12662e5d-4895-447a-b942-fd9b3350ed40", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1192", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "0189bf74-8fe3-4921-9feb-9a8f0035da50", + "x-ms-routing-request-id": "WESTUS2:20210610T231743Z:12662e5d-4895-447a-b942-fd9b3350ed40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset5299\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "397136774", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json new file mode 100644 index 000000000000..e8cbd22904c0 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json @@ -0,0 +1,4295 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b62cfa1cf705e7ae3b24fce5a7be1ea6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7c820240-797f-4f84-8f5f-ab7fc95e7881", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "7c820240-797f-4f84-8f5f-ab7fc95e7881", + "x-ms-routing-request-id": "WESTUS2:20210611T001127Z:7c820240-797f-4f84-8f5f-ab7fc95e7881" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9004?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-c489106dbe1c6b429e058a8fd34725c3-67976cfcb9c85846-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "808312f14ee5470186a1a81d527e175d", + "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": "Fri, 11 Jun 2021 00:11:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b4d56388-d56f-4b84-8a18-27a5c6be44a4", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "b4d56388-d56f-4b84-8a18-27a5c6be44a4", + "x-ms-routing-request-id": "WESTUS2:20210611T001128Z:b4d56388-d56f-4b84-8a18-27a5c6be44a4" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004", + "name": "testrg9004", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "402031f176f7c52d8a851ab0fed85bbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "93c7347e-86c5-4130-9dd8-3ea1b0f0fc53", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "93c7347e-86c5-4130-9dd8-3ea1b0f0fc53", + "x-ms-routing-request-id": "WESTUS2:20210611T001128Z:93c7347e-86c5-4130-9dd8-3ea1b0f0fc53" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a69b5fd537362aab6e7f5605cae8a6e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "a69b5fd537362aab6e7f5605cae8a6e5", + "x-ms-correlation-request-id": "55b4a508-0a53-41a6-988e-c6e79299ea21", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1137", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "201a1399-47ac-440c-973d-b2a82c6c800f", + "x-ms-routing-request-id": "WESTUS2:20210611T001129Z:55b4a508-0a53-41a6-988e-c6e79299ea21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset5299\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f7d5d4db67cba4886f5d1772028fba1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "432", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "1f7d5d4db67cba4886f5d1772028fba1", + "x-ms-correlation-request-id": "c877200a-a978-4a95-b219-20f39265d53b", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;227,Microsoft.Compute/PutVM30Min;1136", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "135e8aaa-46e2-4778-908e-d5609d54216d", + "x-ms-routing-request-id": "WESTUS2:20210611T001129Z:c877200a-a978-4a95-b219-20f39265d53b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset5299\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "397136774", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json new file mode 100644 index 000000000000..7d376ca4befa --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json @@ -0,0 +1,4295 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "126781c0906ad8a43eddd82beba52064", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:45:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dbe34220-7771-4548-b257-956ebe482926", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "dbe34220-7771-4548-b257-956ebe482926", + "x-ms-routing-request-id": "WESTUS2:20210610T224519Z:dbe34220-7771-4548-b257-956ebe482926" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7833?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-424bf635360f474482c1ac3c4613b95e-91e7fca003067247-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a55c5fac97360b3e061ae5239f093100", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:45:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "db943805-7ffe-4db3-9d1f-5fd3d3c2a8e6", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "db943805-7ffe-4db3-9d1f-5fd3d3c2a8e6", + "x-ms-routing-request-id": "WESTUS2:20210610T224521Z:db943805-7ffe-4db3-9d1f-5fd3d3c2a8e6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833", + "name": "testrg7833", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c899d5176b94332f833bdad1c788d07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:45:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "351cb9c1-3f49-4024-9f30-a375ba406667", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "351cb9c1-3f49-4024-9f30-a375ba406667", + "x-ms-routing-request-id": "WESTUS2:20210610T224521Z:351cb9c1-3f49-4024-9f30-a375ba406667" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eb1fad1089ec29ea066476bfb59ed3a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "406", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:45:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "eb1fad1089ec29ea066476bfb59ed3a7", + "x-ms-correlation-request-id": "c58f3d48-cb2f-4658-bd69-79a76632cb68", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1193", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "a01d41d5-b50a-4848-b33b-4735df474e34", + "x-ms-routing-request-id": "WESTUS2:20210610T224521Z:c58f3d48-cb2f-4658-bd69-79a76632cb68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset741\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c8f1c581512c794b35f665400728e59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "430", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 22:45:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "5c8f1c581512c794b35f665400728e59", + "x-ms-correlation-request-id": "81c88a2e-968f-4b5e-9a38-d0afff0fb55c", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1191", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "ee1df902-a59b-4ecf-a987-38934b192c2a", + "x-ms-routing-request-id": "WESTUS2:20210610T224522Z:81c88a2e-968f-4b5e-9a38-d0afff0fb55c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset741\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1157082674", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json new file mode 100644 index 000000000000..5fdb7683b0e3 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json @@ -0,0 +1,4295 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "126781c0906ad8a43eddd82beba52064", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c2b70c8a-d028-4adf-9461-b76cbd7a843b", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "c2b70c8a-d028-4adf-9461-b76cbd7a843b", + "x-ms-routing-request-id": "WESTUS2:20210611T001130Z:c2b70c8a-d028-4adf-9461-b76cbd7a843b" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7833?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-5dda0a3255ef9d459169c80861a80007-4ece631d3364154e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a55c5fac97360b3e061ae5239f093100", + "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": "Fri, 11 Jun 2021 00:11:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8859176d-80e4-428a-8b8c-a3883b0a34f5", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "8859176d-80e4-428a-8b8c-a3883b0a34f5", + "x-ms-routing-request-id": "WESTUS2:20210611T001131Z:8859176d-80e4-428a-8b8c-a3883b0a34f5" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833", + "name": "testrg7833", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c899d5176b94332f833bdad1c788d07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "84f429b6-026c-408a-a200-af5e6336e334", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "84f429b6-026c-408a-a200-af5e6336e334", + "x-ms-routing-request-id": "WESTUS2:20210611T001131Z:84f429b6-026c-408a-a200-af5e6336e334" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eb1fad1089ec29ea066476bfb59ed3a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "406", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "eb1fad1089ec29ea066476bfb59ed3a7", + "x-ms-correlation-request-id": "2c4c295e-6836-4d4d-8046-1ba4856be1a3", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1135", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "1ccd6a42-22a1-41a7-8579-8c9433bc5de9", + "x-ms-routing-request-id": "WESTUS2:20210611T001132Z:2c4c295e-6836-4d4d-8046-1ba4856be1a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset741\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c8f1c581512c794b35f665400728e59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "430", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "5c8f1c581512c794b35f665400728e59", + "x-ms-correlation-request-id": "f7f8a32b-b144-4a00-b089-4ff27ecd15e7", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;225,Microsoft.Compute/PutVM30Min;1134", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "6421bb03-efdb-4f38-859b-8ba7df33436e", + "x-ms-routing-request-id": "WESTUS2:20210611T001132Z:f7f8a32b-b144-4a00-b089-4ff27ecd15e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset741\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1157082674", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json new file mode 100644 index 000000000000..3005f7305f3b --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json @@ -0,0 +1,4308 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5ed396956ef39214d0d6f5a49b32cf56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:03:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a40d7b55-ce26-446b-9fea-1e26e3216db5", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "a40d7b55-ce26-446b-9fea-1e26e3216db5", + "x-ms-routing-request-id": "WESTUS2:20210611T000302Z:a40d7b55-ce26-446b-9fea-1e26e3216db5" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9914?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-a9f89902dde6d64383ca3dffed8494ba-88369cc05856ce44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "40095c9b570f08416b562969fe47768c", + "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": "Fri, 11 Jun 2021 00:03:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "45f47177-f4cd-43b0-94a7-64afc658bfe6", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "45f47177-f4cd-43b0-94a7-64afc658bfe6", + "x-ms-routing-request-id": "WESTUS2:20210611T000302Z:45f47177-f4cd-43b0-94a7-64afc658bfe6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9914", + "name": "testrg9914", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3456719a3ace52f0b160edc679df81d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:03:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d254d262-f9b2-4774-8d81-c549f9e42f84", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "d254d262-f9b2-4774-8d81-c549f9e42f84", + "x-ms-routing-request-id": "WESTUS2:20210611T000303Z:d254d262-f9b2-4774-8d81-c549f9e42f84" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9914/providers/Microsoft.Compute/availabilitySets/test-aset7170?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1d370ffe861b913e568718ea28d28e7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:03:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "1d370ffe861b913e568718ea28d28e7e", + "x-ms-correlation-request-id": "dac3c9cc-4c39-48ca-853f-43150bf06cee", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1146", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "d1176ed6-8973-471d-8964-3768a31c6922", + "x-ms-routing-request-id": "WESTUS2:20210611T000303Z:dac3c9cc-4c39-48ca-853f-43150bf06cee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset7170\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9914/providers/Microsoft.Compute/availabilitySets/test-aset7170\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9914/providers/Microsoft.Compute/availabilitySets/test-aset7170?api-version=2021-04-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "370094a76f3f143032c5de47220529df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 11 Jun 2021 00:03:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "370094a76f3f143032c5de47220529df", + "x-ms-correlation-request-id": "212a576f-46b5-4568-b2e9-4e093295ae75", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1173", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "cf00689e-7edf-42c3-ab3d-d76afe53dfbe", + "x-ms-routing-request-id": "WESTUS2:20210611T000304Z:212a576f-46b5-4568-b2e9-4e093295ae75" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/foo-1/providers/Microsoft.Compute/availabilitySets/test-aset4432?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d19443a13e561fa8832c39b085ff13c3", + "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": "Fri, 11 Jun 2021 00:03:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4093ec49-0b9f-4232-82dd-572891a62b27", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "4093ec49-0b9f-4232-82dd-572891a62b27", + "x-ms-routing-request-id": "WESTUS2:20210611T000304Z:4093ec49-0b9f-4232-82dd-572891a62b27" + }, + "ResponseBody": { + "error": { + "code": "ResourceGroupNotFound", + "message": "Resource group \u0027foo-1\u0027 could not be found." + } + } + } + ], + "Variables": { + "RandomSeed": "1342516939", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json new file mode 100644 index 000000000000..e539f7c59ab1 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json @@ -0,0 +1,4308 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c1b9ea3872e5111d90e1658b998a14aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2a28bb14-7504-4599-90a0-860dbf8beb93", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "2a28bb14-7504-4599-90a0-860dbf8beb93", + "x-ms-routing-request-id": "WESTUS2:20210611T001133Z:2a28bb14-7504-4599-90a0-860dbf8beb93" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4716?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-9b83fc195d390a4b8992559833e2a7b4-a1b7f9dbff529c48-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1815dedad2ada2e1f592435f08cfcaaa", + "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": "Fri, 11 Jun 2021 00:11:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f645ba7d-58cf-454d-b7ae-4fdda98a1d47", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "f645ba7d-58cf-454d-b7ae-4fdda98a1d47", + "x-ms-routing-request-id": "WESTUS2:20210611T001133Z:f645ba7d-58cf-454d-b7ae-4fdda98a1d47" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4716", + "name": "testrg4716", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f7878c9486679d895351b81133b58432", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "efa057c6-d12c-413a-8554-4f01c3c9d6bf", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "efa057c6-d12c-413a-8554-4f01c3c9d6bf", + "x-ms-routing-request-id": "WESTUS2:20210611T001133Z:efa057c6-d12c-413a-8554-4f01c3c9d6bf" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4716/providers/Microsoft.Compute/availabilitySets/test-aset8453?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e9a6c35d8acdd8181ff0e0d9b287129b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "e9a6c35d8acdd8181ff0e0d9b287129b", + "x-ms-correlation-request-id": "436b6c85-c0e7-4074-bd13-46da748b99eb", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1133", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "6e9e0f86-d028-4e1a-9f0d-c9bae4598531", + "x-ms-routing-request-id": "WESTUS2:20210611T001134Z:436b6c85-c0e7-4074-bd13-46da748b99eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset8453\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4716/providers/Microsoft.Compute/availabilitySets/test-aset8453\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4716/providers/Microsoft.Compute/availabilitySets/test-aset8453?api-version=2021-04-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0bab2cbec024096d74aed877a6afebcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 11 Jun 2021 00:11:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "0bab2cbec024096d74aed877a6afebcb", + "x-ms-correlation-request-id": "a3294d89-a1d5-42fe-87eb-7a0bbb578cbe", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1170", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-request-id": "b05d5990-5bf2-4bb1-a71d-efef6fe9ad85", + "x-ms-routing-request-id": "WESTUS2:20210611T001135Z:a3294d89-a1d5-42fe-87eb-7a0bbb578cbe" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/foo-1/providers/Microsoft.Compute/availabilitySets/test-aset8889?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dc851b027706f120ec1474a4fbb1dd8f", + "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": "Fri, 11 Jun 2021 00:11:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8cf5157c-74ce-4768-9a68-006af273b7ad", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "8cf5157c-74ce-4768-9a68-006af273b7ad", + "x-ms-routing-request-id": "WESTUS2:20210611T001135Z:8cf5157c-74ce-4768-9a68-006af273b7ad" + }, + "ResponseBody": { + "error": { + "code": "ResourceGroupNotFound", + "message": "Resource group \u0027foo-1\u0027 could not be found." + } + } + } + ], + "Variables": { + "RandomSeed": "1610509202", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json new file mode 100644 index 000000000000..89634f27518c --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json @@ -0,0 +1,4362 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6c9f0f2b8b7daeee7740fadbc9fbb50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:29:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0997278-541e-4024-913a-998bed950692", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "e0997278-541e-4024-913a-998bed950692", + "x-ms-routing-request-id": "WESTUS2:20210610T232936Z:e0997278-541e-4024-913a-998bed950692" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9019?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-923b563452ba7444841187c461b91f74-30f38d918fbf6a43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "324a95eb0a8b0e771eba9fd61c00c231", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:29:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bf9202a4-f382-4e45-b601-8ce76e73cdf3", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "bf9202a4-f382-4e45-b601-8ce76e73cdf3", + "x-ms-routing-request-id": "WESTUS2:20210610T232937Z:bf9202a4-f382-4e45-b601-8ce76e73cdf3" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019", + "name": "testrg9019", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8d769f3fed1692d0f250ad7af5693224", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:29:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f30e4aa5-1ac9-4212-8499-cc1cb104f22e", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "f30e4aa5-1ac9-4212-8499-cc1cb104f22e", + "x-ms-routing-request-id": "WESTUS2:20210610T232937Z:f30e4aa5-1ac9-4212-8499-cc1cb104f22e" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4dffb5a367d352e6b799fd4f04ca744c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:29:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4dffb5a367d352e6b799fd4f04ca744c", + "x-ms-correlation-request-id": "57d7a35d-3850-4802-a7f0-20a95f25af4a", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1184", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "c95065cb-835b-4f9c-b4c7-04958f317e71", + "x-ms-routing-request-id": "WESTUS2:20210610T232937Z:57d7a35d-3850-4802-a7f0-20a95f25af4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset4455\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "152", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4b79b26de4c2d8a6b823d57df0808e27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "k1": "v1", + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "445", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:29:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4b79b26de4c2d8a6b823d57df0808e27", + "x-ms-correlation-request-id": "cce39123-829b-4514-abf8-640c4a786dd1", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1182", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "86bde520-3cb7-4df9-a8ba-23ea49b03fac", + "x-ms-routing-request-id": "WESTUS2:20210610T232938Z:cce39123-829b-4514-abf8-640c4a786dd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset4455\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022k1\u0022: \u0022v1\u0022,\r\n", + " \u0022k2\u0022: \u0022v2\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "142", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51e2ad6f285196899b8762b65657b7f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "428", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:29:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "51e2ad6f285196899b8762b65657b7f9", + "x-ms-correlation-request-id": "780083e0-19f4-4301-82b9-4a3eb24c13fb", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1180", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "ec725386-9fff-4dcd-bd46-2ddf0b8a103d", + "x-ms-routing-request-id": "WESTUS2:20210610T232938Z:780083e0-19f4-4301-82b9-4a3eb24c13fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset4455\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022k2\u0022: \u0022v2\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "604032343", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json new file mode 100644 index 000000000000..eec96e03b827 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json @@ -0,0 +1,4362 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6c9f0f2b8b7daeee7740fadbc9fbb50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bd4a3dd3-85dc-41b1-84b9-2e85dcd13e39", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "bd4a3dd3-85dc-41b1-84b9-2e85dcd13e39", + "x-ms-routing-request-id": "WESTUS2:20210611T001135Z:bd4a3dd3-85dc-41b1-84b9-2e85dcd13e39" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9019?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-9cd2069d024665438de7002ff3ce18d2-af47df6417d8364b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "324a95eb0a8b0e771eba9fd61c00c231", + "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": "Fri, 11 Jun 2021 00:11:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c43a6dba-552a-4201-84cb-4bbbd655ef3a", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "c43a6dba-552a-4201-84cb-4bbbd655ef3a", + "x-ms-routing-request-id": "WESTUS2:20210611T001136Z:c43a6dba-552a-4201-84cb-4bbbd655ef3a" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019", + "name": "testrg9019", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8d769f3fed1692d0f250ad7af5693224", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ab86344c-378d-45c3-8708-62c68984f490", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "ab86344c-378d-45c3-8708-62c68984f490", + "x-ms-routing-request-id": "WESTUS2:20210611T001136Z:ab86344c-378d-45c3-8708-62c68984f490" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4dffb5a367d352e6b799fd4f04ca744c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4dffb5a367d352e6b799fd4f04ca744c", + "x-ms-correlation-request-id": "07474c20-4803-47a4-9bd9-02a71b7b2a6e", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1132", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "7547b06a-e23a-4e70-b341-18de06369060", + "x-ms-routing-request-id": "WESTUS2:20210611T001137Z:07474c20-4803-47a4-9bd9-02a71b7b2a6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset4455\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "152", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4b79b26de4c2d8a6b823d57df0808e27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "k1": "v1", + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "445", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4b79b26de4c2d8a6b823d57df0808e27", + "x-ms-correlation-request-id": "41d21f2f-f661-46e3-90b2-5ec691320cd9", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;222,Microsoft.Compute/PutVM30Min;1131", + "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-request-id": "5ab1c81f-cc0a-46bc-9813-d5851fd00e42", + "x-ms-routing-request-id": "WESTUS2:20210611T001137Z:41d21f2f-f661-46e3-90b2-5ec691320cd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset4455\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022k1\u0022: \u0022v1\u0022,\r\n", + " \u0022k2\u0022: \u0022v2\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "142", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51e2ad6f285196899b8762b65657b7f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "428", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "51e2ad6f285196899b8762b65657b7f9", + "x-ms-correlation-request-id": "a8d8f07d-9bd5-4820-85e2-8b3c75110c40", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;221,Microsoft.Compute/PutVM30Min;1130", + "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-request-id": "f3699e56-746a-4748-96c7-00a026ce05a7", + "x-ms-routing-request-id": "WESTUS2:20210611T001138Z:a8d8f07d-9bd5-4820-85e2-8b3c75110c40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset4455\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022k2\u0022: \u0022v2\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "604032343", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json new file mode 100644 index 000000000000..cc73d711125f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json @@ -0,0 +1,4297 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "317bf0b353b24dcbcddda3cf0f437767", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:22:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a409861f-0d4c-44a7-aac2-edcd510bffeb", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "a409861f-0d4c-44a7-aac2-edcd510bffeb", + "x-ms-routing-request-id": "WESTUS2:20210610T232201Z:a409861f-0d4c-44a7-aac2-edcd510bffeb" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5427?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-520bcd1aff79064b948b998804c25fc9-6d83fa7da881a247-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "71ea5abd7a2e87c25e13b4fe9d31cc74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:22:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6bc19bf6-277f-4ef7-bf2e-0eef67d4c5ad", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "6bc19bf6-277f-4ef7-bf2e-0eef67d4c5ad", + "x-ms-routing-request-id": "WESTUS2:20210610T232202Z:6bc19bf6-277f-4ef7-bf2e-0eef67d4c5ad" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427", + "name": "testrg5427", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-40453d2890038c44b3d6f2acfa2b4124-a3c3783e4c98864e-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": "5b8cbb0aab2e2340bbf25f2efcc979ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:22:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9b314183-8915-47e4-bb88-45c831bb5541", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "9b314183-8915-47e4-bb88-45c831bb5541", + "x-ms-routing-request-id": "WESTUS2:20210610T232202Z:9b314183-8915-47e4-bb88-45c831bb5541" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320?api-version=2021-04-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "133", + "Content-Type": "application/json", + "traceparent": "00-40453d2890038c44b3d6f2acfa2b4124-dac78f11170df642-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "495c772a85f4b875a95440164e30acd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:22:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "495c772a85f4b875a95440164e30acd7", + "x-ms-correlation-request-id": "e051c9f8-ab01-4db6-91e3-38842e2bd6b0", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1193", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "2b0bcc21-6121-45bb-a8bf-49c401e97dbf", + "x-ms-routing-request-id": "WESTUS2:20210610T232203Z:e051c9f8-ab01-4db6-91e3-38842e2bd6b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset9320\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ba72443b2a70850c45d3b1da6a29d48a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "432", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 10 Jun 2021 23:22:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "ba72443b2a70850c45d3b1da6a29d48a", + "x-ms-correlation-request-id": "bb65172e-b566-4c52-baad-2c88d19eb601", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1191", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "f2b0efb1-66b9-4b35-b130-9896bb747a2e", + "x-ms-routing-request-id": "WESTUS2:20210610T232203Z:bb65172e-b566-4c52-baad-2c88d19eb601" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset9320\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "494142395", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json new file mode 100644 index 000000000000..64b2f725ae09 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json @@ -0,0 +1,4295 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "317bf0b353b24dcbcddda3cf0f437767", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "47716419-087c-42a4-b5c1-064639024871", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "47716419-087c-42a4-b5c1-064639024871", + "x-ms-routing-request-id": "WESTUS2:20210611T001138Z:47716419-087c-42a4-b5c1-064639024871" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5427?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-a6e8df1c7cbc8d4290a1dcf37e158135-a070345b6e24684b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "71ea5abd7a2e87c25e13b4fe9d31cc74", + "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": "Fri, 11 Jun 2021 00:11:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3c7b5513-415a-4b0f-b6fc-bd4ea7858308", + "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-request-id": "3c7b5513-415a-4b0f-b6fc-bd4ea7858308", + "x-ms-routing-request-id": "WESTUS2:20210611T001139Z:3c7b5513-415a-4b0f-b6fc-bd4ea7858308" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427", + "name": "testrg5427", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5b8cbb0aab2e2340bbf25f2efcc979ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ed412ccb-124f-4927-bd76-aada349f895f", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "ed412ccb-124f-4927-bd76-aada349f895f", + "x-ms-routing-request-id": "WESTUS2:20210611T001139Z:ed412ccb-124f-4927-bd76-aada349f895f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "495c772a85f4b875a95440164e30acd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "495c772a85f4b875a95440164e30acd7", + "x-ms-correlation-request-id": "afc34c8e-a095-49bb-932a-01425f1ed235", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;220,Microsoft.Compute/PutVM30Min;1129", + "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-request-id": "e139bc04-43a5-4555-a466-f1b8750a1998", + "x-ms-routing-request-id": "WESTUS2:20210611T001140Z:afc34c8e-a095-49bb-932a-01425f1ed235" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset9320\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ba72443b2a70850c45d3b1da6a29d48a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "432", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "ba72443b2a70850c45d3b1da6a29d48a", + "x-ms-correlation-request-id": "3df9a904-d4aa-4af5-b3ed-7fb8e9711888", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;219,Microsoft.Compute/PutVM30Min;1128", + "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-request-id": "fc30b0ea-48b4-47ff-be71-f4c7398e2070", + "x-ms-routing-request-id": "WESTUS2:20210611T001140Z:3df9a904-d4aa-4af5-b3ed-7fb8e9711888" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset9320\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "494142395", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json new file mode 100644 index 000000000000..8e287dea83a7 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json @@ -0,0 +1,4284 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c1fee53544a7725cd539bc325d7f4304", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:09:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ead10150-9f4e-47b2-a96d-b4c5b0fd9d6a", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "ead10150-9f4e-47b2-a96d-b4c5b0fd9d6a", + "x-ms-routing-request-id": "WESTUS2:20210611T000914Z:ead10150-9f4e-47b2-a96d-b4c5b0fd9d6a" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2012?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-1248002286a35e4ebe93d9cbe7067a94-c1665952a13b674c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "06121ac8d13650892e985d08f87ff7b3", + "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": "Fri, 11 Jun 2021 00:09:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ddda4c87-4ff1-4ca4-8abc-44671925b306", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "ddda4c87-4ff1-4ca4-8abc-44671925b306", + "x-ms-routing-request-id": "WESTUS2:20210611T000915Z:ddda4c87-4ff1-4ca4-8abc-44671925b306" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012", + "name": "testrg2012", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "612532c0c4924197e17c50fdec27e29a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:09:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1d089298-42c1-40f8-bd51-5c779ea12d9b", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "1d089298-42c1-40f8-bd51-5c779ea12d9b", + "x-ms-routing-request-id": "WESTUS2:20210611T000915Z:1d089298-42c1-40f8-bd51-5c779ea12d9b" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4cf614c1fe2d75147078acfe6addbac4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:09:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4cf614c1fe2d75147078acfe6addbac4", + "x-ms-correlation-request-id": "ba7db427-90ca-4d40-a504-e43940787e86", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1140", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "2460cae4-3c22-4667-9317-8cc3f62e8944", + "x-ms-routing-request-id": "WESTUS2:20210611T000916Z:ba7db427-90ca-4d40-a504-e43940787e86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1043\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6a376d7b6601c1a01eb0f0191798d603", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "East US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:09:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "6a376d7b6601c1a01eb0f0191798d603", + "x-ms-correlation-request-id": "84b25767-6d8e-4e17-aa5d-40bb02c22e73", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1138", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "4943323b-c768-4191-8218-6a6ad726c47a", + "x-ms-routing-request-id": "WESTUS2:20210611T000916Z:84b25767-6d8e-4e17-aa5d-40bb02c22e73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1043\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1848329225", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json new file mode 100644 index 000000000000..fd4140f0f586 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json @@ -0,0 +1,4284 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c1fee53544a7725cd539bc325d7f4304", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "da140ed1-7474-450d-adbc-4db447a77fb6", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "da140ed1-7474-450d-adbc-4db447a77fb6", + "x-ms-routing-request-id": "WESTUS2:20210611T001141Z:da140ed1-7474-450d-adbc-4db447a77fb6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2012?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-4e7675dc804cb44f9d0c7ea52dfcc836-c70b8df6ac517946-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "06121ac8d13650892e985d08f87ff7b3", + "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": "Fri, 11 Jun 2021 00:11:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b347c229-82ff-47ba-9c01-3d7fdcd3ba81", + "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-request-id": "b347c229-82ff-47ba-9c01-3d7fdcd3ba81", + "x-ms-routing-request-id": "WESTUS2:20210611T001142Z:b347c229-82ff-47ba-9c01-3d7fdcd3ba81" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012", + "name": "testrg2012", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "612532c0c4924197e17c50fdec27e29a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "27200fd5-caaa-4811-9102-86df23a4bdfb", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "27200fd5-caaa-4811-9102-86df23a4bdfb", + "x-ms-routing-request-id": "WESTUS2:20210611T001142Z:27200fd5-caaa-4811-9102-86df23a4bdfb" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4cf614c1fe2d75147078acfe6addbac4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4cf614c1fe2d75147078acfe6addbac4", + "x-ms-correlation-request-id": "5b871304-8478-41ab-b820-5d2ee37f4e40", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;218,Microsoft.Compute/PutVM30Min;1127", + "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-request-id": "e0faf734-da43-410b-8cf4-d292270a72b0", + "x-ms-routing-request-id": "WESTUS2:20210611T001143Z:5b871304-8478-41ab-b820-5d2ee37f4e40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1043\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6a376d7b6601c1a01eb0f0191798d603", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "East US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "6a376d7b6601c1a01eb0f0191798d603", + "x-ms-correlation-request-id": "feef965e-c665-4d71-b042-058cba389591", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;217,Microsoft.Compute/PutVM30Min;1126", + "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-request-id": "19173d8c-f680-47c8-b1e8-c174d26f801b", + "x-ms-routing-request-id": "WESTUS2:20210611T001143Z:feef965e-c665-4d71-b042-058cba389591" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset1043\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1848329225", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json new file mode 100644 index 000000000000..49471f40739a --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json @@ -0,0 +1,4286 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "77a54813c79d3e0b8d5fb832bf1138c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:07:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6b7dbeb6-26bb-4a58-9628-1fe1b45e102b", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "6b7dbeb6-26bb-4a58-9628-1fe1b45e102b", + "x-ms-routing-request-id": "WESTUS2:20210611T000747Z:6b7dbeb6-26bb-4a58-9628-1fe1b45e102b" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg827?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-5550f1d84b9e8c47abb2d1374d868e59-a2cf6f01b2e2d244-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5feba28d0858f4c07a4764febe86a73e", + "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": "Fri, 11 Jun 2021 00:07:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "53e1cc7d-49be-452b-b582-6be83493fdd5", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "53e1cc7d-49be-452b-b582-6be83493fdd5", + "x-ms-routing-request-id": "WESTUS2:20210611T000748Z:53e1cc7d-49be-452b-b582-6be83493fdd5" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827", + "name": "testrg827", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e8414ae65502094498ce58211e77c57e-77dfce17db88f749-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": "a76979a3c8356c8eecdd25bf38aded62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:07:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "53e5cf9e-2cb2-4055-a736-1a3c5a79ff5f", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "53e5cf9e-2cb2-4055-a736-1a3c5a79ff5f", + "x-ms-routing-request-id": "WESTUS2:20210611T000749Z:53e5cf9e-2cb2-4055-a736-1a3c5a79ff5f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784?api-version=2021-04-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "133", + "Content-Type": "application/json", + "traceparent": "00-e8414ae65502094498ce58211e77c57e-d6e6a0ed54e28a45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fa86f5bbba65e43f83237fa740ced911", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "407", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:07:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "fa86f5bbba65e43f83237fa740ced911", + "x-ms-correlation-request-id": "26515ce8-bd57-4362-8d93-7e4ae5edf890", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1143", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "74af1feb-3b2d-4b5d-bb92-aa89489642cc", + "x-ms-routing-request-id": "WESTUS2:20210611T000749Z:26515ce8-bd57-4362-8d93-7e4ae5edf890" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset9784\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90039b764420e8473985241248e62c1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "East US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "407", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:07:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "90039b764420e8473985241248e62c1d", + "x-ms-correlation-request-id": "be6b1faa-2799-49f8-b2b0-3b01c866d457", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1141", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "d38acffd-1601-49bc-a79b-94e145920ce3", + "x-ms-routing-request-id": "WESTUS2:20210611T000750Z:be6b1faa-2799-49f8-b2b0-3b01c866d457" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset9784\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1294723523", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json new file mode 100644 index 000000000000..537944922395 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json @@ -0,0 +1,4284 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "77a54813c79d3e0b8d5fb832bf1138c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bcc53240-7d30-4368-99fc-1b0a0cb48193", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "bcc53240-7d30-4368-99fc-1b0a0cb48193", + "x-ms-routing-request-id": "WESTUS2:20210611T001143Z:bcc53240-7d30-4368-99fc-1b0a0cb48193" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg827?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-c8da47c011e60648a3d3c1293950689d-2a8618418af28d44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5feba28d0858f4c07a4764febe86a73e", + "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": "Fri, 11 Jun 2021 00:11:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8293d5e6-9f88-4c9a-be5f-90da412f2b09", + "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-request-id": "8293d5e6-9f88-4c9a-be5f-90da412f2b09", + "x-ms-routing-request-id": "WESTUS2:20210611T001144Z:8293d5e6-9f88-4c9a-be5f-90da412f2b09" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827", + "name": "testrg827", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a76979a3c8356c8eecdd25bf38aded62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "53948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3440ebdc-d754-41be-8a36-22cd18fe0a25", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "3440ebdc-d754-41be-8a36-22cd18fe0a25", + "x-ms-routing-request-id": "WESTUS2:20210611T001144Z:3440ebdc-d754-41be-8a36-22cd18fe0a25" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", + "namespace": "Microsoft.Compute", + "authorizations": [ + { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", + "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" + }, + { + "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", + "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" + }, + { + "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", + "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", + "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" + }, + { + "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", + "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" + }, + { + "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", + "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" + } + ], + "resourceTypes": [ + { + "resourceType": "availabilitySets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "virtualMachineScaleSets/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2015-06-15", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "virtualMachineScaleSets/publicIPAddresses", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-10-30-preview", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/vmSizes", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/runCommands", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/usages", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachines", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/virtualMachineScaleSets", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones", + "locations": [], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/edgeZones/publishers", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "restorePointCollections", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "restorePointCollections/restorePoints", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30" + ], + "capabilities": "None" + }, + { + "resourceType": "proximityPlacementGroups", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "sshPublicKeys", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "virtualMachines/metricDefinitions", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "West US 3", + "Jio India West" + ], + "apiVersions": [ + "2014-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/spotEvictionRates", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/spotPriceHistory", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "locations/sharedGalleries", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-09-30", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-03-30" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2017-12-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "sharedVMImages", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "sharedVMImages/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "defaultApiVersion": "2017-10-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/artifactPublishers", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central" + ], + "apiVersions": [ + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/capsoperations", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01", + "2017-10-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "galleries/images/versions", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/galleries", + "locations": [ + "West Central US", + "South Central US", + "East US 2", + "Southeast Asia", + "West Europe", + "West US", + "East US", + "Canada Central", + "North Europe", + "North Central US", + "Brazil South", + "UK West", + "West India", + "East Asia", + "Australia East", + "Japan East", + "Korea South", + "West US 2", + "Canada East", + "UK South", + "Central India", + "South India", + "Australia Southeast", + "Japan West", + "Korea Central", + "France Central", + "Central US", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2020-09-30", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-06-01" + ], + "defaultApiVersion": "2018-06-01", + "capabilities": "None" + }, + { + "resourceType": "disks", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "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" + }, + { + "resourceType": "snapshots", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices/roles", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/csoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsVersions", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "images", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01", + "2017-03-30", + "2016-08-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-01", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/logAnalytics", + "locations": [ + "East US", + "East US 2", + "West US", + "Central US", + "North Central US", + "South Central US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Australia Central", + "Brazil South", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "West Central US", + "UK South", + "UK West", + "Korea Central", + "Korea South", + "France Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01", + "2018-06-01", + "2018-04-01", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "hostGroups", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "hostGroups/hosts", + "locations": [ + "Central US", + "East US 2", + "West Europe", + "Southeast Asia", + "France Central", + "North Europe", + "West US 2", + "East US", + "UK South", + "Japan East", + "Japan West", + "East Asia", + "North Central US", + "South Central US", + "Canada East", + "Korea Central", + "Brazil South", + "UK West", + "Canada Central", + "West US", + "West Central US", + "Central India", + "South India", + "Australia Southeast", + "Korea South", + "West India", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Australia East", + "Jio India West", + "West US 3" + ], + "apiVersions": [ + "2021-04-01", + "2021-03-01", + "2020-12-01", + "2020-06-01", + "2019-12-01", + "2019-07-01", + "2019-03-01", + "2018-10-01" + ], + "defaultApiVersion": "2020-06-01", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Norway East", + "zones": [] + }, + { + "location": "East Asia", + "zones": [] + } + ], + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784?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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fa86f5bbba65e43f83237fa740ced911", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "407", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "fa86f5bbba65e43f83237fa740ced911", + "x-ms-correlation-request-id": "ae79ca87-cfab-41a4-b702-116a43061061", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;216,Microsoft.Compute/PutVM30Min;1125", + "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-request-id": "41f105af-b867-45d1-94fe-7dd32bf920ce", + "x-ms-routing-request-id": "WESTUS2:20210611T001145Z:ae79ca87-cfab-41a4-b702-116a43061061" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset9784\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784?api-version=2021-04-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90039b764420e8473985241248e62c1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "East US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "407", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 11 Jun 2021 00:11:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "90039b764420e8473985241248e62c1d", + "x-ms-correlation-request-id": "278786d3-c46f-4fcf-a5af-bc9180503ba4", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;215,Microsoft.Compute/PutVM30Min;1124", + "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-request-id": "f075b5d0-864d-48a6-baf9-617099023c69", + "x-ms-routing-request-id": "WESTUS2:20210611T001146Z:278786d3-c46f-4fcf-a5af-bc9180503ba4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset9784\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "1294723523", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file From 0d972d24eec5219822247efc57f9605a0479b6fc Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Mon, 14 Jun 2021 16:41:05 -0700 Subject: [PATCH 3/3] Merge GenericResourceOperationsTests and GenericResourceTests --- .../GenericResourceOperationsTests.cs | 350 +- .../tests/Scenario/GenericResourceTests.cs | 253 - .../AddTag().json | 103 +- .../AddTag()Async.json | 97 +- .../Delete().json | 119 +- .../Delete()Async.json | 111 +- .../GenericResourceOperationsTests/Get().json | 110 +- .../Get()Async.json | 107 +- .../GetGenericsBadApiVersion().json} | 138 +- .../GetGenericsBadApiVersion()Async.json} | 137 +- .../GetGenericsBadNameSpace().json | 122 +- .../GetGenericsBadNameSpace()Async.json | 122 +- .../GetGenericsConfirmException().json | 414 +- .../GetGenericsConfirmException()Async.json | 415 +- .../GetGenericsGoodApiVersion().json | 164 +- .../GetGenericsGoodApiVersion()Async.json | 167 +- .../RemoveTag().json | 153 +- .../RemoveTag()Async.json | 152 +- .../SetTags().json | 109 +- .../SetTags()Async.json | 106 +- .../StartAddTag().json | 113 +- .../StartAddTag()Async.json | 110 +- .../StartDelete().json | 117 +- .../StartDelete()Async.json | 116 +- .../StartRemoveTag().json | 157 +- .../StartRemoveTag()Async.json | 153 +- .../StartSetTags().json | 108 +- .../StartSetTags()Async.json | 107 +- .../StartUpdate().json | 128 +- .../StartUpdate()Async.json | 127 +- .../Update().json | 132 +- .../Update()Async.json | 130 +- .../GenericResourceTests/AddTag().json | 4136 ---------------- .../GenericResourceTests/AddTag()Async.json | 4134 ---------------- .../GenericResourceTests/Delete().json | 4104 ---------------- .../GenericResourceTests/Delete()Async.json | 4102 ---------------- .../GenericResourceTests(False).json | 134 - .../GenericResourceTests(True)Async.json | 133 - .../GenericResourceTests/Get().json | 4120 ---------------- .../GenericResourceTests/Get()Async.json | 4121 ---------------- .../GenericResourceTests/RemoveTag().json | 4196 ---------------- .../RemoveTag()Async.json | 4197 ----------------- .../GenericResourceTests/SetTags().json | 4135 ---------------- .../GenericResourceTests/SetTags()Async.json | 4136 ---------------- .../GenericResourceTests/StartAddTag().json | 4134 ---------------- .../StartAddTag()Async.json | 4134 ---------------- .../GenericResourceTests/StartDelete().json | 4104 ---------------- .../StartDelete()Async.json | 4103 ---------------- .../StartRemoveTag().json | 4197 ----------------- .../StartRemoveTag()Async.json | 4196 ---------------- .../GenericResourceTests/StartSetTags().json | 4136 ---------------- .../StartSetTags()Async.json | 4135 ---------------- .../GenericResourceTests/StartUpdate().json | 4135 ---------------- .../StartUpdate()Async.json | 4136 ---------------- .../GenericResourceTests/Update().json | 4134 ---------------- .../GenericResourceTests/Update()Async.json | 4136 ---------------- 56 files changed, 2615 insertions(+), 93660 deletions(-) delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs rename sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/{GenericResourceTests/GetGenericsBadApiVersion()Async.json => GenericResourceOperationsTests/GetGenericsBadApiVersion().json} (52%) rename sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/{GenericResourceTests/GetGenericsBadApiVersion().json => GenericResourceOperationsTests/GetGenericsBadApiVersion()Async.json} (52%) rename sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/{GenericResourceTests => GenericResourceOperationsTests}/GetGenericsBadNameSpace().json (55%) rename sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/{GenericResourceTests => GenericResourceOperationsTests}/GetGenericsBadNameSpace()Async.json (55%) rename sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/{GenericResourceTests => GenericResourceOperationsTests}/GetGenericsConfirmException().json (91%) rename sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/{GenericResourceTests => GenericResourceOperationsTests}/GetGenericsConfirmException()Async.json (91%) rename sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/{GenericResourceTests => GenericResourceOperationsTests}/GetGenericsGoodApiVersion().json (89%) rename sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/{GenericResourceTests => GenericResourceOperationsTests}/GetGenericsGoodApiVersion()Async.json (89%) delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(False).json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(True)Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs index dc7601ee4fcd..3426e2d647a7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs @@ -1,38 +1,73 @@ -using System; +using System; using System.Collections.Generic; -using System.Linq; -using System.Text; using System.Threading.Tasks; using Azure.Core.TestFramework; using NUnit.Framework; namespace Azure.ResourceManager.Core.Tests { + [Parallelizable] public class GenericResourceOperationsTests : ResourceManagerTestBase { public GenericResourceOperationsTests(bool isAsync) - : base(isAsync)//, RecordedTestMode.Record) + : base(isAsync)//, RecordedTestMode.Record) { } [TestCase] [RecordedTest] - public async Task Get() + public async Task GetGenericsConfirmException() { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset2 = await aset1.GetAsync(); - Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); - //Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); - Assert.AreEqual(aset1.Data.Tags, aset2.Data.Tags); + 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()); + Assert.AreEqual(404, exception.Status); + Assert.True(exception.Message.Contains("ResourceNotFound")); + } + + [TestCase] + [RecordedTest] + public async Task GetGenericsBadNameSpace() + { + 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()); + Assert.IsTrue(exception.Message.Equals($"An invalid resouce id was given {asetid}")); + } + + [TestCase] + [RecordedTest] + public async Task GetGenericsBadApiVersion() + { + 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); + var subOp = await client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); + var genericResourceOperations = new GenericResourceOperations(subOp, rgid); + RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); + Assert.IsTrue(exception.Message.Contains("InvalidApiVersionParameter")); + } + + [TestCase] + [RecordedTest] + public async Task GetGenericsGoodApiVersion() + { + 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] @@ -40,8 +75,9 @@ public async Task Get() public async Task Delete() { ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - GenericResource aset = await CreateGenericAvailabilitySetAsync(rg.Id); - await aset.DeleteAsync(); + 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)); @@ -55,8 +91,12 @@ public async Task StartDelete() ResourceGroup rg = await rgOp.WaitForCompletionAsync(); var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); GenericResource aset = await createOp.WaitForCompletionAsync(); - var deleteOp = await aset.StartDeleteAsync(); - await deleteOp.WaitForCompletionResponseAsync(); + + Assert.DoesNotThrowAsync(async () => + { + var deleteOp = await aset.StartDeleteAsync(); + _ = await deleteOp.WaitForCompletionResponseAsync(); + }); var fakeId = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/foo-1"; Assert.ThrowsAsync(async () => @@ -68,221 +108,161 @@ public async Task StartDelete() [TestCase] [RecordedTest] - public async Task Update() + public async Task AddTag() { ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); - var data = new GenericResourceData(); - data.Location = LocationData.EastUS2; - GenericResource aset2 = await aset1.UpdateAsync(data); - Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); - Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); - Assert.AreEqual(aset1.Data.Tags, aset2.Data.Tags); - - Assert.ThrowsAsync(async () => _ = await aset1.UpdateAsync(null)); + 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")); + Assert.AreEqual("value", aset.Data.Tags["key"]); } [TestCase] [RecordedTest] - public async Task StartUpdate() + public async Task StartAddTag() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset1 = await createOp.WaitForCompletionAsync(); - var data = new GenericResourceData(); - data.Location = LocationData.EastUS2; - var updateOp = await aset1.StartUpdateAsync(data); - GenericResource aset2 = await updateOp.WaitForCompletionAsync(); - Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); - Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); - Assert.AreEqual(aset1.Data.Tags, aset2.Data.Tags); + GenericResource aset = await createOp.WaitForCompletionAsync(); - Assert.ThrowsAsync(async () => - { - var updateOp = await aset1.StartUpdateAsync(null); - _ = await updateOp.WaitForCompletionAsync(); - }); + Assert.AreEqual(0, aset.Data.Tags.Count); + + var addTagOp = await aset.StartAddTagAsync("key", "value"); + aset = await addTagOp.WaitForCompletionAsync(); + + Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual("value", aset.Data.Tags["key"]); } [TestCase] [RecordedTest] - public async Task AddTag() + public async Task Get() { ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); - Assert.AreEqual(0, aset1.Data.Tags.Count); - GenericResource aset2 = await aset1.AddTagAsync("key", "value"); - Assert.AreEqual(1, aset2.Data.Tags.Count); - Assert.IsTrue(aset2.Data.Tags.Contains(new KeyValuePair("key", "value"))); - Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); - Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + var aset = await CreateGenericAvailabilitySetAsync(rg.Id); + + GenericResource aset2 = await aset.GetAsync(); + + AssertAreEqual(aset, aset2); } [TestCase] [RecordedTest] - public async Task StartAddTag() + 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); + + Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual("value", aset.Data.Tags["key"]); + } + + [TestCase] + [RecordedTest] + public async Task StartSetTags() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset1 = await createOp.WaitForCompletionAsync(); - Assert.AreEqual(0, aset1.Data.Tags.Count); - var addTagOp = await aset1.StartAddTagAsync("key", "value"); - GenericResource aset2 = await addTagOp.WaitForCompletionAsync(); - Assert.AreEqual(1, aset2.Data.Tags.Count); - Assert.IsTrue(aset2.Data.Tags.Contains(new KeyValuePair("key", "value"))); - Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); - Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + GenericResource aset = await createOp.WaitForCompletionAsync(); + + Dictionary tags = new Dictionary(); + tags.Add("key", "value"); + var setTagsOp = await aset.StartSetTagsAsync(tags); + aset = await setTagsOp.WaitForCompletionAsync(); + + Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual("value", aset.Data.Tags["key"]); } [TestCase] [RecordedTest] - public async Task SetTags() + public async Task RemoveTag() { ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); - Assert.AreEqual(0, aset1.Data.Tags.Count); - var tags = new Dictionary() - { - { "key", "value"} - }; - GenericResource aset2 = await aset1.SetTagsAsync(tags); - Assert.AreEqual(tags, aset2.Data.Tags); - Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); - Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + var aset = await CreateGenericAvailabilitySetAsync(rg.Id); + + Dictionary tags = new Dictionary(); + tags.Add("key", "value"); + aset = await aset.SetTagsAsync(tags); + + aset = await aset.RemoveTagAsync("key"); + + Assert.IsFalse(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual(0, aset.Data.Tags.Count); } [TestCase] [RecordedTest] - public async Task StartSetTags() + public async Task StartRemoveTag() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); - var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset1 = await createOp.WaitForCompletionAsync(); - Assert.AreEqual(0, aset1.Data.Tags.Count); - var tags = new Dictionary() - { - { "key", "value"} - }; - var setTagsOp = await aset1.StartSetTagsAsync(tags); - GenericResource aset2 = await setTagsOp.WaitForCompletionAsync(); - Assert.AreEqual(tags, aset2.Data.Tags); - Assert.AreEqual(aset1.Data.Id, aset2.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset2.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset2.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset2.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset2.Data.Plan); - Assert.AreEqual(aset1.Data.Properties, aset2.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset2.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset2.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset2.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset2.Data.Identity); + var crateOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset = await crateOp.WaitForCompletionAsync(); + + Dictionary tags = new Dictionary(); + tags.Add("key", "value"); + var setTagsOp = await aset.StartSetTagsAsync(tags); + aset = await setTagsOp.WaitForCompletionAsync(); + + var removeTagOp = await aset.StartRemoveTagAsync("key"); + aset = await removeTagOp.WaitForCompletionAsync(); + + Assert.IsFalse(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual(0, aset.Data.Tags.Count); } [TestCase] [RecordedTest] - public async Task RemoveTag() + public async Task Update() { ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - GenericResource aset1 = await CreateGenericAvailabilitySetAsync(rg.Id); - var tags1 = new Dictionary() - { - { "k1", "v1"}, - { "k2", "v2"} - }; - GenericResource aset2 = await aset1.SetTagsAsync(tags1); - GenericResource aset3 = await aset2.RemoveTagAsync("k1"); - var tags2 = new Dictionary() - { - { "k2", "v2"} - }; - Assert.AreEqual(tags2, aset3.Data.Tags); - Assert.AreEqual(aset1.Data.Id, aset3.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset3.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset3.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset3.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset3.Data.Plan); - Assert.AreEqual(aset1.Data.Properties, aset3.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset3.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset3.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset3.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset3.Data.Identity); + var aset = await CreateGenericAvailabilitySetAsync(rg.Id); + + var data = ConstructGenericAvailabilitySet(); + data.Tags.Add("key", "value"); + aset = await aset.UpdateAsync(data); + + Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual("value", aset.Data.Tags["key"]); + + Assert.ThrowsAsync(async () => _ = await aset.UpdateAsync(null)); } [TestCase] [RecordedTest] - public async Task StartRemoveTag() + public async Task StartUpdate() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset1 = await createOp.WaitForCompletionAsync(); - var tags1 = new Dictionary() - { - { "k1", "v1"}, - { "k2", "v2"} - }; - var setTagsOp = await aset1.StartSetTagsAsync(tags1); - GenericResource aset2 = await setTagsOp.WaitForCompletionAsync(); - var removeTagOp = await aset2.StartRemoveTagAsync("k1"); - GenericResource aset3 = await removeTagOp.WaitForCompletionAsync(); - var tags2 = new Dictionary() + GenericResource aset = await createOp.WaitForCompletionAsync(); + + var data = ConstructGenericAvailabilitySet(); + data.Tags.Add("key", "value"); + var updateOp = await aset.StartUpdateAsync(data); + aset = await updateOp.WaitForCompletionAsync(); + + Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual("value", aset.Data.Tags["key"]); + + Assert.ThrowsAsync(async () => { - { "k2", "v2"} - }; - Assert.AreEqual(tags2, aset3.Data.Tags); - Assert.AreEqual(aset1.Data.Id, aset3.Data.Id); - Assert.AreEqual(aset1.Data.Name, aset3.Data.Name); - Assert.AreEqual(aset1.Data.Type, aset3.Data.Type); - Assert.AreEqual(aset1.Data.Location, aset3.Data.Location); - Assert.AreEqual(aset1.Data.Plan, aset3.Data.Plan); - Assert.AreEqual(aset1.Data.Properties, aset3.Data.Properties); - Assert.AreEqual(aset1.Data.Kind, aset3.Data.Kind); - Assert.AreEqual(aset1.Data.ManagedBy, aset3.Data.ManagedBy); - Assert.AreEqual(aset1.Data.Sku, aset3.Data.Sku); - Assert.AreEqual(aset1.Data.Identity, aset3.Data.Identity); + var updateOp = await aset.StartUpdateAsync(null); + _ = await updateOp.WaitForCompletionAsync(); + }); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs deleted file mode 100644 index 4e55514b7dcc..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs +++ /dev/null @@ -1,253 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Threading.Tasks; -using Azure.Core.TestFramework; -using NUnit.Framework; - -namespace Azure.ResourceManager.Core.Tests -{ - [Parallelizable] - public class GenericResourceTests : ResourceManagerTestBase - { - private string _rgName; - - private readonly string _location = "southcentralus"; - - public GenericResourceTests(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 subOp = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); - var genericResourceOperations = new GenericResourceOperations(subOp, asetid); - RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); - Assert.AreEqual(404, exception.Status); - Assert.True(exception.Message.Contains("ResourceNotFound")); - } - - [TestCase] - [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 subOp = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); - var genericResourceOperations = new GenericResourceOperations(subOp, asetid); - InvalidOperationException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); - Assert.IsTrue(exception.Message.Equals($"An invalid resouce id was given {asetid}")); - } - - [TestCase] - [RecordedTest] - public async Task GetGenericsBadApiVersion() - { - ResourceGroupResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}"; - ArmClientOptions options = new ArmClientOptions(); - options.ApiVersions.SetApiVersion(rgid.ResourceType, "1500-10-10"); - var client = GetArmClient(options); - var subOp = await client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); - var genericResourceOperations = new GenericResourceOperations(subOp, rgid); - RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); - Assert.IsTrue(exception.Message.Contains("InvalidApiVersionParameter")); - } - - [TestCase] - [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)); - } - - [TestCase] - [RecordedTest] - public async Task Delete() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - Assert.DoesNotThrowAsync(async () => await aset.DeleteAsync()); - } - - [TestCase] - [RecordedTest] - 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(); - - Assert.DoesNotThrowAsync(async () => { - var deleteOp = await aset.StartDeleteAsync(); - _ = await deleteOp.WaitForCompletionResponseAsync(); - }); - } - - [TestCase] - [RecordedTest] - public async Task AddTag() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - aset = await aset.AddTagAsync("key", "value"); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - } - - [TestCase] - [RecordedTest] - 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 addTagOp = await aset.StartAddTagAsync("key", "value"); - aset = await addTagOp.WaitForCompletionAsync(); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - } - - [TestCase] - [RecordedTest] - public async Task Get() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - GenericResource aset2 = await aset.GetAsync(); - - AssertAreEqual(aset, aset2); - } - - [TestCase] - [RecordedTest] - public async Task SetTags() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - Dictionary tags = new Dictionary(); - tags.Add("key", "value"); - aset = await aset.SetTagsAsync(tags); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - } - - [TestCase] - [RecordedTest] - 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(); - - Dictionary tags = new Dictionary(); - tags.Add("key", "value"); - var setTagsOp = await aset.StartSetTagsAsync(tags); - aset = await setTagsOp.WaitForCompletionAsync(); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - } - - [TestCase] - [RecordedTest] - public async Task RemoveTag() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - Dictionary tags = new Dictionary(); - tags.Add("key", "value"); - aset = await aset.SetTagsAsync(tags); - - aset = await aset.RemoveTagAsync("key"); - - Assert.IsFalse(aset.Data.Tags.ContainsKey("key")); - } - - [TestCase] - [RecordedTest] - 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(); - - Dictionary tags = new Dictionary(); - tags.Add("key", "value"); - var setTagsOp = await aset.StartSetTagsAsync(tags); - aset = await setTagsOp.WaitForCompletionAsync(); - - var removeTagOp = await aset.StartRemoveTagAsync("key"); - aset = await removeTagOp.WaitForCompletionAsync(); - - Assert.IsFalse(aset.Data.Tags.ContainsKey("key")); - } - - [TestCase] - [RecordedTest] - public async Task Update() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - var data = ConstructGenericAvailabilitySet(); - data.Tags.Add("key", "value"); - aset = await aset.UpdateAsync(data); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - } - - [TestCase] - [RecordedTest] - 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 data = ConstructGenericAvailabilitySet(); - data.Tags.Add("key", "value"); - var updateOp = await aset.StartUpdateAsync(data); - aset = await updateOp.WaitForCompletionAsync(); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json index c904fd432693..76b8360ce755 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc5581414d92451bcb7279cc1a477674", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 22:41:41 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": "712b6f89-83be-42c6-8718-ac12a6b4e9e3", + "x-ms-correlation-request-id": "2f61d757-eaa4-4e92-88e9-ff3c2849a799", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "712b6f89-83be-42c6-8718-ac12a6b4e9e3", - "x-ms-routing-request-id": "WESTUS2:20210610T224141Z:712b6f89-83be-42c6-8718-ac12a6b4e9e3" + "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", @@ -46,40 +46,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4108?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-6066f659bdaadf48bb7d3c19db4fe1e1-49fb35814ec73145-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4829e5d3303be24113cec7a9d2840a5d", + "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": { "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": "Thu, 10 Jun 2021 22:41:42 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": "7ed1b5e1-19d0-458c-a43d-262d369131f1", + "x-ms-correlation-request-id": "7a0fb3b5-1870-4e0a-9c63-15572e7ffa85", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "7ed1b5e1-19d0-458c-a43d-262d369131f1", - "x-ms-routing-request-id": "WESTUS2:20210610T224142Z:7ed1b5e1-19d0-458c-a43d-262d369131f1" + "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/testrg4108", - "name": "testrg4108", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471", + "name": "testrg3471", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,25 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "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": "95b66f40031585b610c40000c573affa", + "x-ms-client-request-id": "f9262ef4af315b66d2278e0f5d656383", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 22:41:42 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": "90be115e-f14f-4071-a12c-5e1c119a5da2", + "x-ms-correlation-request-id": "7a42093e-bb6b-46b9-9411-6a0935ec5627", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "90be115e-f14f-4071-a12c-5e1c119a5da2", - "x-ms-routing-request-id": "WESTUS2:20210610T224142Z:90be115e-f14f-4071-a12c-5e1c119a5da2" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884?api-version=2021-04-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", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "39a357b605e61450e97e7f539cf9ed6f", + "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": { @@ -4187,9 +4194,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 22:41:43 GMT", + "Date": "Mon, 14 Jun 2021 23:38:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "39a357b605e61450e97e7f539cf9ed6f", - "x-ms-correlation-request-id": "eba9b812-05d9-4c76-9460-9f6b8dbb2f12", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", + "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": "79d4545a-41e9-419e-ad36-aad774319e3e", - "x-ms-routing-request-id": "WESTUS2:20210610T224143Z:eba9b812-05d9-4c76-9460-9f6b8dbb2f12" + "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-aset2884\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884\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", @@ -4223,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2d1cae1824663a6a1ea2ab968362e816", + "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": { @@ -4250,9 +4257,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "432", + "Content-Length": "430", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 22:41:43 GMT", + "Date": "Mon, 14 Jun 2021 23:38:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4261,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2d1cae1824663a6a1ea2ab968362e816", - "x-ms-correlation-request-id": "ad317f44-0e15-4d2e-843b-2cce3564d420", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1195", + "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": "f6261aa5-3b99-4c5a-8907-9bbb91289998", - "x-ms-routing-request-id": "WESTUS2:20210610T224144Z:ad317f44-0e15-4d2e-843b-2cce3564d420" + "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-aset2884\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884\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", @@ -4289,7 +4296,7 @@ } ], "Variables": { - "RandomSeed": "998176862", + "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/GenericResourceOperationsTests/AddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json index b85435ca7e96..79c4a49c0d60 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc5581414d92451bcb7279cc1a477674", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:15 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": "456f0e91-0d37-43fc-b486-9eb64ee11803", + "x-ms-correlation-request-id": "5e5dd13b-c678-460d-9284-841d3a881491", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "456f0e91-0d37-43fc-b486-9eb64ee11803", - "x-ms-routing-request-id": "WESTUS2:20210611T001115Z:456f0e91-0d37-43fc-b486-9eb64ee11803" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4108?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-d362c40d00440546a0f2e9f18e5e3c86-5e3a5264510da048-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4829e5d3303be24113cec7a9d2840a5d", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:16 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": "695a9c5e-5d14-42bf-a865-ac0593cddc17", + "x-ms-correlation-request-id": "4386ffec-7b9e-4003-a426-ddb5e3f8ae5e", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "695a9c5e-5d14-42bf-a865-ac0593cddc17", - "x-ms-routing-request-id": "WESTUS2:20210611T001116Z:695a9c5e-5d14-42bf-a865-ac0593cddc17" + "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/testrg4108", - "name": "testrg4108", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803", + "name": "testrg6803", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "95b66f40031585b610c40000c573affa", + "x-ms-client-request-id": "d1a69f1dbf6b2cdefcca4bc0a70b9faa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:16 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": "bda7c93a-4911-4c25-8147-1cd72338dccd", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "bda7c93a-4911-4c25-8147-1cd72338dccd", - "x-ms-routing-request-id": "WESTUS2:20210611T001116Z:bda7c93a-4911-4c25-8147-1cd72338dccd" + "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", @@ -2417,6 +2417,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2467,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2517,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2567,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2617,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "39a357b605e61450e97e7f539cf9ed6f", + "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": { @@ -4189,7 +4194,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:17 GMT", + "Date": "Mon, 14 Jun 2021 23:38:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "39a357b605e61450e97e7f539cf9ed6f", - "x-ms-correlation-request-id": "b0e0fa4e-0ffc-4470-96a4-a438e517112b", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1144", + "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": "358191ff-2a5d-4de5-9626-a3f0874aa312", - "x-ms-routing-request-id": "WESTUS2:20210611T001118Z:b0e0fa4e-0ffc-4470-96a4-a438e517112b" + "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-aset2884\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884\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", @@ -4223,15 +4228,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2d1cae1824663a6a1ea2ab968362e816", + "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": { @@ -4252,7 +4257,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:18 GMT", + "Date": "Mon, 14 Jun 2021 23:38:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4261,17 +4266,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2d1cae1824663a6a1ea2ab968362e816", - "x-ms-correlation-request-id": "3219e7cd-a96c-454e-9349-2b95b0f3bc53", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1143", + "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": "99dd67e7-1e76-45b0-9ba3-1b8f3cb6d872", - "x-ms-routing-request-id": "WESTUS2:20210611T001118Z:3219e7cd-a96c-454e-9349-2b95b0f3bc53" + "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-aset2884\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4108/providers/Microsoft.Compute/availabilitySets/test-aset2884\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", @@ -4289,7 +4294,7 @@ } ], "Variables": { - "RandomSeed": "998176862", + "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/GenericResourceOperationsTests/Delete().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json index c4e4962b038b..8006f40eefd9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d9122099303d43b650a70ca10d390e27", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:01:58 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": "835a3648-179b-4f13-930a-8da2c3397eae", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "835a3648-179b-4f13-930a-8da2c3397eae", - "x-ms-routing-request-id": "WESTUS2:20210611T000158Z:835a3648-179b-4f13-930a-8da2c3397eae" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9648?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-25fb2b93bc1f5948bad568013ab0f6a9-acc5953669cfd541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "386e6d7ef284715c08a6b7bfa771f853", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:01:59 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": "216b18df-1868-4a76-b673-fdb126af0240", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "216b18df-1868-4a76-b673-fdb126af0240", - "x-ms-routing-request-id": "WESTUS2:20210611T000159Z:216b18df-1868-4a76-b673-fdb126af0240" + "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/testrg9648", - "name": "testrg9648", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6183", + "name": "testrg6183", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,26 +94,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2fee9adc60a89649a4ac27e5dd2da3ac-480590a39b2b8741-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": "749fc415d8439b03268caa6e801b92ff", + "x-ms-client-request-id": "da1f723b189d19c141b6a3625a7e2649", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:01:59 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": "a270a227-92de-4932-8404-878f82db3d03", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "a270a227-92de-4932-8404-878f82db3d03", - "x-ms-routing-request-id": "WESTUS2:20210611T000159Z:a270a227-92de-4932-8404-878f82db3d03" + "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", @@ -2418,6 +2417,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2467,6 +2467,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2516,6 +2517,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2565,6 +2567,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2614,6 +2617,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4163,16 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9648/providers/Microsoft.Compute/availabilitySets/test-aset418?api-version=2021-04-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-2fee9adc60a89649a4ac27e5dd2da3ac-30d5a8c95d5b0641-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "45dc338a1554b52d683589ff84a83614", + "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": { @@ -4189,9 +4192,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "406", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:02:00 GMT", + "Date": "Mon, 14 Jun 2021 23:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4200,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "45dc338a1554b52d683589ff84a83614", - "x-ms-correlation-request-id": "4d806d0a-7605-40a3-a047-45fce507eb41", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1148", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "9ccd6856-9769-4528-a8c9-fc8e40bfa7cb", - "x-ms-routing-request-id": "WESTUS2:20210611T000200Z:4d806d0a-7605-40a3-a047-45fce507eb41" + "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-aset418\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9648/providers/Microsoft.Compute/availabilitySets/test-aset418\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", @@ -4225,13 +4228,13 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9648/providers/Microsoft.Compute/availabilitySets/test-aset418?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3d1dc0240d1bffa297e90c0e4e03167d", + "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, @@ -4239,7 +4242,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 11 Jun 2021 00:02:04 GMT", + "Date": "Mon, 14 Jun 2021 23:38:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4248,25 +4251,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3d1dc0240d1bffa297e90c0e4e03167d", - "x-ms-correlation-request-id": "bf4ae299-2acb-4173-a951-cd5952d8a72f", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1175", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "98c1a2d3-0d9b-41fc-82f0-2aca155f2386", - "x-ms-routing-request-id": "WESTUS2:20210611T000204Z:bf4ae299-2acb-4173-a951-cd5952d8a72f" + "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-aset9771?api-version=2021-04-01", + "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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8bc4dbfff8f8733f24b29eb72b456886", + "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": { @@ -4285,15 +4288,15 @@ "Cache-Control": "no-cache", "Content-Length": "97", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:02:05 GMT", + "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": "c9b13669-988b-4aa5-965a-ef08246db184", + "x-ms-correlation-request-id": "6bf24c6e-98bb-40b3-ac1e-da5ec7c31d04", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "c9b13669-988b-4aa5-965a-ef08246db184", - "x-ms-routing-request-id": "WESTUS2:20210611T000205Z:c9b13669-988b-4aa5-965a-ef08246db184" + "x-ms-request-id": "6bf24c6e-98bb-40b3-ac1e-da5ec7c31d04", + "x-ms-routing-request-id": "WESTUS2:20210614T233822Z:6bf24c6e-98bb-40b3-ac1e-da5ec7c31d04" }, "ResponseBody": { "error": { @@ -4304,7 +4307,7 @@ } ], "Variables": { - "RandomSeed": "555988089", + "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/GenericResourceOperationsTests/Delete()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json index 15b146ec604e..44bd337c19fa 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0a5fc4d3a01d2b451e4f6d6d16200650", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:18 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": "4770028f-3fd0-4702-976b-d92fc7d4e765", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "4770028f-3fd0-4702-976b-d92fc7d4e765", - "x-ms-routing-request-id": "WESTUS2:20210611T001119Z:4770028f-3fd0-4702-976b-d92fc7d4e765" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4031?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-eb975dfcc9ae914eab5a68604cf2c823-8333869795a3c34f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2e8bcee25d5a33dd66fede7a55a066df", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:19 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": "af74602b-345c-4af5-a184-5d5a3f459035", + "x-ms-correlation-request-id": "676c397e-c5e4-4651-bccd-cc3c6675f6f1", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "af74602b-345c-4af5-a184-5d5a3f459035", - "x-ms-routing-request-id": "WESTUS2:20210611T001119Z:af74602b-345c-4af5-a184-5d5a3f459035" + "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/testrg4031", - "name": "testrg4031", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5765", + "name": "testrg5765", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,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": "2efa60713a4abeb895843118246223fe", + "x-ms-client-request-id": "0d26ab3bdd5f3f22d3d6b29a7249b9e6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:19 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": "9fd09abf-2dba-4fbf-bca3-736cdb6dbe43", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "9fd09abf-2dba-4fbf-bca3-736cdb6dbe43", - "x-ms-routing-request-id": "WESTUS2:20210611T001120Z:9fd09abf-2dba-4fbf-bca3-736cdb6dbe43" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4031/providers/Microsoft.Compute/availabilitySets/test-aset2984?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1a5b738978d78267d6b7a166b1c9ae07", + "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": { @@ -4189,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:20 GMT", + "Date": "Mon, 14 Jun 2021 23:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1a5b738978d78267d6b7a166b1c9ae07", - "x-ms-correlation-request-id": "b775bd2b-fb1b-48e8-87b5-269de1c256db", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1142", + "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": "eea75bcf-0d39-4101-ab8d-fc02677f622d", - "x-ms-routing-request-id": "WESTUS2:20210611T001120Z:b775bd2b-fb1b-48e8-87b5-269de1c256db" + "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-aset2984\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4031/providers/Microsoft.Compute/availabilitySets/test-aset2984\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", @@ -4223,13 +4230,13 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4031/providers/Microsoft.Compute/availabilitySets/test-aset2984?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2ccb7bbbc40af8a1f877579398510dcc", + "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, @@ -4237,7 +4244,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 11 Jun 2021 00:11:20 GMT", + "Date": "Mon, 14 Jun 2021 23:38:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4246,25 +4253,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2ccb7bbbc40af8a1f877579398510dcc", - "x-ms-correlation-request-id": "5c8ad794-b5b7-440f-8803-73be2576c30f", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1171", + "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": "7c2f7812-c629-404d-918c-c857baee8b15", - "x-ms-routing-request-id": "WESTUS2:20210611T001121Z:5c8ad794-b5b7-440f-8803-73be2576c30f" + "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-aset5873?api-version=2021-04-01", + "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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fd36ab05fd82fcc9b5addea704fb8162", + "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": { @@ -4283,15 +4290,15 @@ "Cache-Control": "no-cache", "Content-Length": "97", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:21 GMT", + "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": "1be6044c-0445-4401-9f89-c7c80a66b642", + "x-ms-correlation-request-id": "9a51bf8a-c5ea-4c40-9744-bba059b66863", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "1be6044c-0445-4401-9f89-c7c80a66b642", - "x-ms-routing-request-id": "WESTUS2:20210611T001121Z:1be6044c-0445-4401-9f89-c7c80a66b642" + "x-ms-request-id": "9a51bf8a-c5ea-4c40-9744-bba059b66863", + "x-ms-routing-request-id": "WESTUS2:20210614T233822Z:9a51bf8a-c5ea-4c40-9744-bba059b66863" }, "ResponseBody": { "error": { @@ -4302,7 +4309,7 @@ } ], "Variables": { - "RandomSeed": "781068341", + "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/GenericResourceOperationsTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json index e9ae390a5235..0901d8862bcd 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json @@ -6,8 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "47565bd910ec025fada0ee271971be10", + "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, @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:45:12 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": "73f9704e-021c-4b5c-ac8c-97a58053f07f", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "73f9704e-021c-4b5c-ac8c-97a58053f07f", - "x-ms-routing-request-id": "WESTUS2:20210610T234513Z:73f9704e-021c-4b5c-ac8c-97a58053f07f" + "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", @@ -46,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4955?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-744fd2403a6cac4c81b30cc99d028348-bb5d64d9a76a7e4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "55db4b26d329c5a5cd3c42477b3efc4f", + "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": { @@ -67,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:45:13 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": "70fbecda-5386-4127-ac55-5a50f9bb6cb8", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "70fbecda-5386-4127-ac55-5a50f9bb6cb8", - "x-ms-routing-request-id": "WESTUS2:20210610T234514Z:70fbecda-5386-4127-ac55-5a50f9bb6cb8" + "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/testrg4955", - "name": "testrg4955", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664", + "name": "testrg9664", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "afd58575cf3fe5e51c9c46b220bab6fa", + "x-ms-client-request-id": "39f8e4740869030b322ae1d0641f5265", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:45:14 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": "3d4bee5e-069f-41a2-a07c-922e91a82f6d", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "3d4bee5e-069f-41a2-a07c-922e91a82f6d", - "x-ms-routing-request-id": "WESTUS2:20210610T234515Z:3d4bee5e-069f-41a2-a07c-922e91a82f6d" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "17077101af8ab088811fd31cba3162f1", + "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": { @@ -4187,9 +4193,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:45:15 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "17077101af8ab088811fd31cba3162f1", - "x-ms-correlation-request-id": "33a0827f-dd0b-4036-a668-ef539a756638", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1175", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "891ee572-6fdb-453b-9f75-b1ccabcdf417", - "x-ms-routing-request-id": "WESTUS2:20210610T234515Z:33a0827f-dd0b-4036-a668-ef539a756638" + "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-aset2925\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925\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", @@ -4223,22 +4229,22 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc7a4d8c38f5c507fd242d1ffbc92bea", + "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": "Thu, 10 Jun 2021 23:45:15 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4247,17 +4253,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cc7a4d8c38f5c507fd242d1ffbc92bea", - "x-ms-correlation-request-id": "ef3cae1b-9f7b-4484-b7ad-f26d63c6eebc", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31995", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "4c91a68e-808a-46e6-b691-7ece7ec055ca", - "x-ms-routing-request-id": "WESTUS2:20210610T234515Z:ef3cae1b-9f7b-4484-b7ad-f26d63c6eebc" + "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-aset2925\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925\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", @@ -4274,7 +4280,7 @@ } ], "Variables": { - "RandomSeed": "1330699705", + "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/GenericResourceOperationsTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json index c113c55dafc6..d257dbca5138 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "47565bd910ec025fada0ee271971be10", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:21 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": "f8549e94-9c4b-4f14-8809-7c3582eccf6e", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "f8549e94-9c4b-4f14-8809-7c3582eccf6e", - "x-ms-routing-request-id": "WESTUS2:20210611T001122Z:f8549e94-9c4b-4f14-8809-7c3582eccf6e" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4955?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-66424eeada4a034aad05f80255606c90-077000c4372ce840-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "55db4b26d329c5a5cd3c42477b3efc4f", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:22 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": "0767cb0a-6e52-4c70-8839-2b026856dea3", + "x-ms-correlation-request-id": "6859345c-4cea-407c-8308-3565f0e76adc", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "0767cb0a-6e52-4c70-8839-2b026856dea3", - "x-ms-routing-request-id": "WESTUS2:20210611T001123Z:0767cb0a-6e52-4c70-8839-2b026856dea3" + "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/testrg4955", - "name": "testrg4955", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035", + "name": "testrg8035", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,25 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "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": "afd58575cf3fe5e51c9c46b220bab6fa", + "x-ms-client-request-id": "1782b3296283a2460bd743a836c293cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:22 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": "740a0ed5-3025-4ecb-8ddf-a3d2e616a274", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "740a0ed5-3025-4ecb-8ddf-a3d2e616a274", - "x-ms-routing-request-id": "WESTUS2:20210611T001123Z:740a0ed5-3025-4ecb-8ddf-a3d2e616a274" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925?api-version=2021-04-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", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "17077101af8ab088811fd31cba3162f1", + "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": { @@ -4187,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, 11 Jun 2021 00:11:23 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "17077101af8ab088811fd31cba3162f1", - "x-ms-correlation-request-id": "641790ce-33a1-4f78-ab14-96f30f6334b2", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1141", + "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": "95ff5f52-a73e-4d16-ae6a-143ddb0a55f8", - "x-ms-routing-request-id": "WESTUS2:20210611T001124Z:641790ce-33a1-4f78-ab14-96f30f6334b2" + "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-aset2925\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925\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", @@ -4223,22 +4230,22 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc7a4d8c38f5c507fd242d1ffbc92bea", + "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, 11 Jun 2021 00:11:23 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4247,17 +4254,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cc7a4d8c38f5c507fd242d1ffbc92bea", - "x-ms-correlation-request-id": "c19cf74c-c6d0-4b82-b712-346a1cb4bbc9", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31885", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "5c9a36a3-d455-4bd3-8a68-b5ea88e5058e", - "x-ms-routing-request-id": "WESTUS2:20210611T001124Z:c19cf74c-c6d0-4b82-b712-346a1cb4bbc9" + "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-aset2925\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4955/providers/Microsoft.Compute/availabilitySets/test-aset2925\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", @@ -4274,7 +4281,7 @@ } ], "Variables": { - "RandomSeed": "1330699705", + "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/GenericResourceOperationsTests/RemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json index 597ab13ff9a2..08a62736dfc0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "28df0f8bb853b846b8d145484618f644", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:26:41 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": "8f10941b-50bc-44ef-9fa4-236a2b30045e", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "8f10941b-50bc-44ef-9fa4-236a2b30045e", - "x-ms-routing-request-id": "WESTUS2:20210610T232642Z:8f10941b-50bc-44ef-9fa4-236a2b30045e" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6978?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-50fe6e65d5fd7549bf63845972faab52-afb0bc7a8b64f649-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1e5883ebd30b239ffe7bc2990df18d21", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:26:42 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": "0cfc3444-1092-4372-aa3d-c6d69849e084", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "0cfc3444-1092-4372-aa3d-c6d69849e084", - "x-ms-routing-request-id": "WESTUS2:20210610T232643Z:0cfc3444-1092-4372-aa3d-c6d69849e084" + "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/testrg6978", - "name": "testrg6978", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377", + "name": "testrg6377", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,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": "b6f6fc34cf549222749c3ae26ecf7644", + "x-ms-client-request-id": "5b809365d6a8a13a27b901259b5734aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:26:43 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": "3fd3ba30-2d24-4cc7-be83-3feb4d313fc7", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "3fd3ba30-2d24-4cc7-be83-3feb4d313fc7", - "x-ms-routing-request-id": "WESTUS2:20210610T232643Z:3fd3ba30-2d24-4cc7-be83-3feb4d313fc7" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b5582c9c7fae403b04553c841fabe0b8", + "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": { @@ -4189,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:26:43 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b5582c9c7fae403b04553c841fabe0b8", - "x-ms-correlation-request-id": "4482fa2e-8e06-48be-9669-21067e09f5ab", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1189", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "4bedb638-ab53-41d3-9058-69cbf9f29733", - "x-ms-routing-request-id": "WESTUS2:20210610T232644Z:4482fa2e-8e06-48be-9669-21067e09f5ab" + "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-aset1398\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\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", @@ -4223,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-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": "152", + "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c570544c6b34b4a7c1b6b2ff939d73c9", + "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": { @@ -4244,16 +4251,15 @@ }, "location": "West US 2", "tags": { - "k1": "v1", - "k2": "v2" + "key": "value" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "445", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:26:44 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4262,22 +4268,21 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c570544c6b34b4a7c1b6b2ff939d73c9", - "x-ms-correlation-request-id": "00cfb62b-30ae-469b-9318-0f033993ba4f", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1188", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "e55002af-e9f6-4238-b663-6c2d97ea9551", - "x-ms-routing-request-id": "WESTUS2:20210610T232644Z:00cfb62b-30ae-469b-9318-0f033993ba4f" + "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-aset1398\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\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", - " \u0022k1\u0022: \u0022v1\u0022,\r\n", - " \u0022k2\u0022: \u0022v2\u0022\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", " },\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", @@ -4290,15 +4295,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-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": "142", + "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ca378fc51a3aba84492f39977d982098", + "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": { @@ -4310,16 +4315,14 @@ "name": "Aligned" }, "location": "West US 2", - "tags": { - "k2": "v2" - } + "tags": {} }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "428", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:26:44 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4328,22 +4331,20 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ca378fc51a3aba84492f39977d982098", - "x-ms-correlation-request-id": "d02532ec-c1f8-4bec-b02b-054ec1bdc2a5", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1186", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "71ed0d50-60ed-4728-a418-15b149ca2ea4", - "x-ms-routing-request-id": "WESTUS2:20210610T232644Z:d02532ec-c1f8-4bec-b02b-054ec1bdc2a5" + "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-aset1398\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\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", - " \u0022k2\u0022: \u0022v2\u0022\r\n", - " },\r\n", + " \u0022tags\u0022: {},\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", " \u0022platformFaultDomainCount\u0022: 2\r\n", @@ -4356,7 +4357,7 @@ } ], "Variables": { - "RandomSeed": "1664202294", + "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/GenericResourceOperationsTests/RemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json index c12e87a16c8f..526ccb7837f0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json @@ -6,8 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "28df0f8bb853b846b8d145484618f644", + "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, @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:23 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": "96f87a81-a7b4-4bfa-9c06-c9574dbf7e45", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "96f87a81-a7b4-4bfa-9c06-c9574dbf7e45", - "x-ms-routing-request-id": "WESTUS2:20210611T001124Z:96f87a81-a7b4-4bfa-9c06-c9574dbf7e45" + "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", @@ -46,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6978?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-2b4e7745c0dab44fb8134c39d7f8a599-b91c4d841c638b42-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1e5883ebd30b239ffe7bc2990df18d21", + "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": { @@ -67,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:24 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": "78508b72-97f9-44fa-88e8-d049e6abf578", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "78508b72-97f9-44fa-88e8-d049e6abf578", - "x-ms-routing-request-id": "WESTUS2:20210611T001125Z:78508b72-97f9-44fa-88e8-d049e6abf578" + "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/testrg6978", - "name": "testrg6978", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934", + "name": "testrg3934", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "b6f6fc34cf549222749c3ae26ecf7644", + "x-ms-client-request-id": "a8d04a745a4e1176ec2d13e9c4c016c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:24 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": "48e7a12c-6cdb-462a-8c53-da38694c3e9d", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "48e7a12c-6cdb-462a-8c53-da38694c3e9d", - "x-ms-routing-request-id": "WESTUS2:20210611T001125Z:48e7a12c-6cdb-462a-8c53-da38694c3e9d" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-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", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b5582c9c7fae403b04553c841fabe0b8", + "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": { @@ -4189,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:25 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b5582c9c7fae403b04553c841fabe0b8", - "x-ms-correlation-request-id": "17cb086f-312e-45b6-8adc-42f9267185d2", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1140", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "50a13705-0e4a-4f11-971a-0b12305ce638", - "x-ms-routing-request-id": "WESTUS2:20210611T001126Z:17cb086f-312e-45b6-8adc-42f9267185d2" + "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-aset1398\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\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", @@ -4223,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-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": "152", + "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c570544c6b34b4a7c1b6b2ff939d73c9", + "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": { @@ -4244,16 +4250,15 @@ }, "location": "West US 2", "tags": { - "k1": "v1", - "k2": "v2" + "key": "value" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "445", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:25 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4262,22 +4267,21 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c570544c6b34b4a7c1b6b2ff939d73c9", - "x-ms-correlation-request-id": "897bb52a-a574-472d-9df2-d738ed7791e9", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1139", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "1faa6b1b-60c8-44d5-80c0-bde6ec9438d9", - "x-ms-routing-request-id": "WESTUS2:20210611T001126Z:897bb52a-a574-472d-9df2-d738ed7791e9" + "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-aset1398\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\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", - " \u0022k1\u0022: \u0022v1\u0022,\r\n", - " \u0022k2\u0022: \u0022v2\u0022\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", " },\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", @@ -4290,15 +4294,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398?api-version=2021-04-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": "142", + "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ca378fc51a3aba84492f39977d982098", + "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": { @@ -4310,16 +4314,14 @@ "name": "Aligned" }, "location": "West US 2", - "tags": { - "k2": "v2" - } + "tags": {} }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "428", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:26 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4328,22 +4330,20 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ca378fc51a3aba84492f39977d982098", - "x-ms-correlation-request-id": "1a467db8-fe32-4c43-aae9-71521ea242a4", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1138", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "f7a049a7-1fca-43a1-95a3-db03b20f5cad", - "x-ms-routing-request-id": "WESTUS2:20210611T001127Z:1a467db8-fe32-4c43-aae9-71521ea242a4" + "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-aset1398\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6978/providers/Microsoft.Compute/availabilitySets/test-aset1398\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", - " \u0022k2\u0022: \u0022v2\u0022\r\n", - " },\r\n", + " \u0022tags\u0022: {},\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", " \u0022platformFaultDomainCount\u0022: 2\r\n", @@ -4356,7 +4356,7 @@ } ], "Variables": { - "RandomSeed": "1664202294", + "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/GenericResourceOperationsTests/SetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json index 8584d894d458..910f53f33c04 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b62cfa1cf705e7ae3b24fce5a7be1ea6", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:17:40 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": "5110b3dc-ace4-4582-81fd-2a8aacda7439", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "5110b3dc-ace4-4582-81fd-2a8aacda7439", - "x-ms-routing-request-id": "WESTUS2:20210610T231740Z:5110b3dc-ace4-4582-81fd-2a8aacda7439" + "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", @@ -46,40 +46,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9004?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-7d4f6f5f04807d478b861c9524dd6b45-6de3bf41a8183343-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "808312f14ee5470186a1a81d527e175d", + "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": { "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": "Thu, 10 Jun 2021 23:17:41 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": "468f3aa0-ce85-45a3-8af6-e43920adc7e1", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "468f3aa0-ce85-45a3-8af6-e43920adc7e1", - "x-ms-routing-request-id": "WESTUS2:20210610T231741Z:468f3aa0-ce85-45a3-8af6-e43920adc7e1" + "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/testrg9004", - "name": "testrg9004", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3687", + "name": "testrg3687", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,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": "402031f176f7c52d8a851ab0fed85bbf", + "x-ms-client-request-id": "6be7fadea2abd2fa0eb0365ad0be15d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:17:42 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": "fc7801ac-6c58-4f2d-90b7-2a70078136e5", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "fc7801ac-6c58-4f2d-90b7-2a70078136e5", - "x-ms-routing-request-id": "WESTUS2:20210610T231742Z:fc7801ac-6c58-4f2d-90b7-2a70078136e5" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a69b5fd537362aab6e7f5605cae8a6e5", + "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": { @@ -4189,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:17:42 GMT", + "Date": "Mon, 14 Jun 2021 23:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a69b5fd537362aab6e7f5605cae8a6e5", - "x-ms-correlation-request-id": "ec1f592b-317a-422c-abe6-898121667375", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1194", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "d987d5d0-4b4e-4545-9ef1-bd805f9675ff", - "x-ms-routing-request-id": "WESTUS2:20210610T231743Z:ec1f592b-317a-422c-abe6-898121667375" + "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-aset5299\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299\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", @@ -4223,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1f7d5d4db67cba4886f5d1772028fba1", + "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": { @@ -4252,7 +4259,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:17:43 GMT", + "Date": "Mon, 14 Jun 2021 23:38:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4261,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1f7d5d4db67cba4886f5d1772028fba1", - "x-ms-correlation-request-id": "12662e5d-4895-447a-b942-fd9b3350ed40", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1192", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "0189bf74-8fe3-4921-9feb-9a8f0035da50", - "x-ms-routing-request-id": "WESTUS2:20210610T231743Z:12662e5d-4895-447a-b942-fd9b3350ed40" + "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-aset5299\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299\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", @@ -4289,7 +4296,7 @@ } ], "Variables": { - "RandomSeed": "397136774", + "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/GenericResourceOperationsTests/SetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json index e8cbd22904c0..f0d6a3381740 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json @@ -6,8 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b62cfa1cf705e7ae3b24fce5a7be1ea6", + "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, @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:26 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": "7c820240-797f-4f84-8f5f-ab7fc95e7881", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "7c820240-797f-4f84-8f5f-ab7fc95e7881", - "x-ms-routing-request-id": "WESTUS2:20210611T001127Z:7c820240-797f-4f84-8f5f-ab7fc95e7881" + "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", @@ -46,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9004?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-c489106dbe1c6b429e058a8fd34725c3-67976cfcb9c85846-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "808312f14ee5470186a1a81d527e175d", + "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": { @@ -67,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:27 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": "b4d56388-d56f-4b84-8a18-27a5c6be44a4", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "b4d56388-d56f-4b84-8a18-27a5c6be44a4", - "x-ms-routing-request-id": "WESTUS2:20210611T001128Z:b4d56388-d56f-4b84-8a18-27a5c6be44a4" + "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/testrg9004", - "name": "testrg9004", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2426", + "name": "testrg2426", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "402031f176f7c52d8a851ab0fed85bbf", + "x-ms-client-request-id": "8b7ef65a1d9fbc8742f69b15f6118021", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:27 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": "93c7347e-86c5-4130-9dd8-3ea1b0f0fc53", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "93c7347e-86c5-4130-9dd8-3ea1b0f0fc53", - "x-ms-routing-request-id": "WESTUS2:20210611T001128Z:93c7347e-86c5-4130-9dd8-3ea1b0f0fc53" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299?api-version=2021-04-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", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a69b5fd537362aab6e7f5605cae8a6e5", + "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": { @@ -4189,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:28 GMT", + "Date": "Mon, 14 Jun 2021 23:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a69b5fd537362aab6e7f5605cae8a6e5", - "x-ms-correlation-request-id": "55b4a508-0a53-41a6-988e-c6e79299ea21", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1137", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "201a1399-47ac-440c-973d-b2a82c6c800f", - "x-ms-routing-request-id": "WESTUS2:20210611T001129Z:55b4a508-0a53-41a6-988e-c6e79299ea21" + "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-aset5299\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299\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", @@ -4223,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1f7d5d4db67cba4886f5d1772028fba1", + "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": { @@ -4252,7 +4258,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:28 GMT", + "Date": "Mon, 14 Jun 2021 23:38:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4261,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1f7d5d4db67cba4886f5d1772028fba1", - "x-ms-correlation-request-id": "c877200a-a978-4a95-b219-20f39265d53b", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;227,Microsoft.Compute/PutVM30Min;1136", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "135e8aaa-46e2-4778-908e-d5609d54216d", - "x-ms-routing-request-id": "WESTUS2:20210611T001129Z:c877200a-a978-4a95-b219-20f39265d53b" + "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-aset5299\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9004/providers/Microsoft.Compute/availabilitySets/test-aset5299\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", @@ -4289,7 +4295,7 @@ } ], "Variables": { - "RandomSeed": "397136774", + "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/GenericResourceOperationsTests/StartAddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json index 7d376ca4befa..351f1655060d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "126781c0906ad8a43eddd82beba52064", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 22:45:19 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": "dbe34220-7771-4548-b257-956ebe482926", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "dbe34220-7771-4548-b257-956ebe482926", - "x-ms-routing-request-id": "WESTUS2:20210610T224519Z:dbe34220-7771-4548-b257-956ebe482926" + "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", @@ -46,40 +46,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7833?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-424bf635360f474482c1ac3c4613b95e-91e7fca003067247-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a55c5fac97360b3e061ae5239f093100", + "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": { "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": "Thu, 10 Jun 2021 22:45:20 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": "db943805-7ffe-4db3-9d1f-5fd3d3c2a8e6", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "db943805-7ffe-4db3-9d1f-5fd3d3c2a8e6", - "x-ms-routing-request-id": "WESTUS2:20210610T224521Z:db943805-7ffe-4db3-9d1f-5fd3d3c2a8e6" + "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/testrg7833", - "name": "testrg7833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6845", + "name": "testrg6845", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,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": "6c899d5176b94332f833bdad1c788d07", + "x-ms-client-request-id": "9a072903bdb076fa35d697de18650c02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 22:45:20 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": "351cb9c1-3f49-4024-9f30-a375ba406667", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "351cb9c1-3f49-4024-9f30-a375ba406667", - "x-ms-routing-request-id": "WESTUS2:20210610T224521Z:351cb9c1-3f49-4024-9f30-a375ba406667" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eb1fad1089ec29ea066476bfb59ed3a7", + "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": { @@ -4187,9 +4194,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "406", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 22:45:21 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "eb1fad1089ec29ea066476bfb59ed3a7", - "x-ms-correlation-request-id": "c58f3d48-cb2f-4658-bd69-79a76632cb68", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1193", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "a01d41d5-b50a-4848-b33b-4735df474e34", - "x-ms-routing-request-id": "WESTUS2:20210610T224521Z:c58f3d48-cb2f-4658-bd69-79a76632cb68" + "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-aset741\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741\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", @@ -4223,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5c8f1c581512c794b35f665400728e59", + "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": { @@ -4250,9 +4257,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "430", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 22:45:21 GMT", + "Date": "Mon, 14 Jun 2021 23:38:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4261,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5c8f1c581512c794b35f665400728e59", - "x-ms-correlation-request-id": "81c88a2e-968f-4b5e-9a38-d0afff0fb55c", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1191", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "ee1df902-a59b-4ecf-a987-38934b192c2a", - "x-ms-routing-request-id": "WESTUS2:20210610T224522Z:81c88a2e-968f-4b5e-9a38-d0afff0fb55c" + "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-aset741\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741\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", @@ -4289,7 +4296,7 @@ } ], "Variables": { - "RandomSeed": "1157082674", + "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/GenericResourceOperationsTests/StartAddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json index 5fdb7683b0e3..4a0a9f956bc0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json @@ -6,8 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "126781c0906ad8a43eddd82beba52064", + "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, @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:29 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": "c2b70c8a-d028-4adf-9461-b76cbd7a843b", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "c2b70c8a-d028-4adf-9461-b76cbd7a843b", - "x-ms-routing-request-id": "WESTUS2:20210611T001130Z:c2b70c8a-d028-4adf-9461-b76cbd7a843b" + "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", @@ -46,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7833?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-5dda0a3255ef9d459169c80861a80007-4ece631d3364154e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a55c5fac97360b3e061ae5239f093100", + "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": { @@ -67,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:30 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": "8859176d-80e4-428a-8b8c-a3883b0a34f5", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "8859176d-80e4-428a-8b8c-a3883b0a34f5", - "x-ms-routing-request-id": "WESTUS2:20210611T001131Z:8859176d-80e4-428a-8b8c-a3883b0a34f5" + "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/testrg7833", - "name": "testrg7833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3463", + "name": "testrg3463", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "6c899d5176b94332f833bdad1c788d07", + "x-ms-client-request-id": "37a11fa291121516f8e0ec482c278e5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:30 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": "84f429b6-026c-408a-a200-af5e6336e334", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "84f429b6-026c-408a-a200-af5e6336e334", - "x-ms-routing-request-id": "WESTUS2:20210611T001131Z:84f429b6-026c-408a-a200-af5e6336e334" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eb1fad1089ec29ea066476bfb59ed3a7", + "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": { @@ -4187,9 +4193,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "406", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:31 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "eb1fad1089ec29ea066476bfb59ed3a7", - "x-ms-correlation-request-id": "2c4c295e-6836-4d4d-8046-1ba4856be1a3", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1135", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "1ccd6a42-22a1-41a7-8579-8c9433bc5de9", - "x-ms-routing-request-id": "WESTUS2:20210611T001132Z:2c4c295e-6836-4d4d-8046-1ba4856be1a3" + "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-aset741\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741\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", @@ -4223,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5c8f1c581512c794b35f665400728e59", + "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": { @@ -4250,9 +4256,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "430", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:31 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4261,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5c8f1c581512c794b35f665400728e59", - "x-ms-correlation-request-id": "f7f8a32b-b144-4a00-b089-4ff27ecd15e7", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;225,Microsoft.Compute/PutVM30Min;1134", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "6421bb03-efdb-4f38-859b-8ba7df33436e", - "x-ms-routing-request-id": "WESTUS2:20210611T001132Z:f7f8a32b-b144-4a00-b089-4ff27ecd15e7" + "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-aset741\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7833/providers/Microsoft.Compute/availabilitySets/test-aset741\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", @@ -4289,7 +4295,7 @@ } ], "Variables": { - "RandomSeed": "1157082674", + "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/GenericResourceOperationsTests/StartDelete().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json index 3005f7305f3b..8d4ab824a451 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5ed396956ef39214d0d6f5a49b32cf56", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:03:01 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": "a40d7b55-ce26-446b-9fea-1e26e3216db5", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "a40d7b55-ce26-446b-9fea-1e26e3216db5", - "x-ms-routing-request-id": "WESTUS2:20210611T000302Z:a40d7b55-ce26-446b-9fea-1e26e3216db5" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9914?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-a9f89902dde6d64383ca3dffed8494ba-88369cc05856ce44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "40095c9b570f08416b562969fe47768c", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:03:02 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": "45f47177-f4cd-43b0-94a7-64afc658bfe6", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "45f47177-f4cd-43b0-94a7-64afc658bfe6", - "x-ms-routing-request-id": "WESTUS2:20210611T000302Z:45f47177-f4cd-43b0-94a7-64afc658bfe6" + "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/testrg9914", - "name": "testrg9914", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6621", + "name": "testrg6621", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,25 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "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": "3456719a3ace52f0b160edc679df81d4", + "x-ms-client-request-id": "66c84ec7af17b920200e4dcc7eca8689", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:03:03 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": "d254d262-f9b2-4774-8d81-c549f9e42f84", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "d254d262-f9b2-4774-8d81-c549f9e42f84", - "x-ms-routing-request-id": "WESTUS2:20210611T000303Z:d254d262-f9b2-4774-8d81-c549f9e42f84" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9914/providers/Microsoft.Compute/availabilitySets/test-aset7170?api-version=2021-04-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", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1d370ffe861b913e568718ea28d28e7e", + "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": { @@ -4189,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:03:03 GMT", + "Date": "Mon, 14 Jun 2021 23:38:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1d370ffe861b913e568718ea28d28e7e", - "x-ms-correlation-request-id": "dac3c9cc-4c39-48ca-853f-43150bf06cee", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1146", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "d1176ed6-8973-471d-8964-3768a31c6922", - "x-ms-routing-request-id": "WESTUS2:20210611T000303Z:dac3c9cc-4c39-48ca-853f-43150bf06cee" + "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-aset7170\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9914/providers/Microsoft.Compute/availabilitySets/test-aset7170\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", @@ -4223,13 +4230,13 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9914/providers/Microsoft.Compute/availabilitySets/test-aset7170?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "370094a76f3f143032c5de47220529df", + "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, @@ -4237,7 +4244,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 11 Jun 2021 00:03:04 GMT", + "Date": "Mon, 14 Jun 2021 23:38:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4246,25 +4253,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "370094a76f3f143032c5de47220529df", - "x-ms-correlation-request-id": "212a576f-46b5-4568-b2e9-4e093295ae75", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1173", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "cf00689e-7edf-42c3-ab3d-d76afe53dfbe", - "x-ms-routing-request-id": "WESTUS2:20210611T000304Z:212a576f-46b5-4568-b2e9-4e093295ae75" + "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-aset4432?api-version=2021-04-01", + "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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d19443a13e561fa8832c39b085ff13c3", + "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": { @@ -4283,15 +4290,15 @@ "Cache-Control": "no-cache", "Content-Length": "97", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:03:04 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": "4093ec49-0b9f-4232-82dd-572891a62b27", + "x-ms-correlation-request-id": "cfdfbdec-daee-411c-93d8-ebcd211b39ea", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "4093ec49-0b9f-4232-82dd-572891a62b27", - "x-ms-routing-request-id": "WESTUS2:20210611T000304Z:4093ec49-0b9f-4232-82dd-572891a62b27" + "x-ms-request-id": "cfdfbdec-daee-411c-93d8-ebcd211b39ea", + "x-ms-routing-request-id": "WESTUS2:20210614T233839Z:cfdfbdec-daee-411c-93d8-ebcd211b39ea" }, "ResponseBody": { "error": { @@ -4302,7 +4309,7 @@ } ], "Variables": { - "RandomSeed": "1342516939", + "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/GenericResourceOperationsTests/StartDelete()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json index e539f7c59ab1..76d379a1ffd4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json @@ -6,8 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c1b9ea3872e5111d90e1658b998a14aa", + "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, @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "2a28bb14-7504-4599-90a0-860dbf8beb93", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "2a28bb14-7504-4599-90a0-860dbf8beb93", - "x-ms-routing-request-id": "WESTUS2:20210611T001133Z:2a28bb14-7504-4599-90a0-860dbf8beb93" + "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", @@ -46,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4716?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-9b83fc195d390a4b8992559833e2a7b4-a1b7f9dbff529c48-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1815dedad2ada2e1f592435f08cfcaaa", + "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": { @@ -67,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "f645ba7d-58cf-454d-b7ae-4fdda98a1d47", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "f645ba7d-58cf-454d-b7ae-4fdda98a1d47", - "x-ms-routing-request-id": "WESTUS2:20210611T001133Z:f645ba7d-58cf-454d-b7ae-4fdda98a1d47" + "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/testrg4716", - "name": "testrg4716", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5361", + "name": "testrg5361", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "f7878c9486679d895351b81133b58432", + "x-ms-client-request-id": "87594a432a0ba3b75457b287a629f1d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "efa057c6-d12c-413a-8554-4f01c3c9d6bf", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "efa057c6-d12c-413a-8554-4f01c3c9d6bf", - "x-ms-routing-request-id": "WESTUS2:20210611T001133Z:efa057c6-d12c-413a-8554-4f01c3c9d6bf" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4716/providers/Microsoft.Compute/availabilitySets/test-aset8453?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e9a6c35d8acdd8181ff0e0d9b287129b", + "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": { @@ -4189,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:33 GMT", + "Date": "Mon, 14 Jun 2021 23:38:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e9a6c35d8acdd8181ff0e0d9b287129b", - "x-ms-correlation-request-id": "436b6c85-c0e7-4074-bd13-46da748b99eb", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1133", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "6e9e0f86-d028-4e1a-9f0d-c9bae4598531", - "x-ms-routing-request-id": "WESTUS2:20210611T001134Z:436b6c85-c0e7-4074-bd13-46da748b99eb" + "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-aset8453\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4716/providers/Microsoft.Compute/availabilitySets/test-aset8453\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", @@ -4223,13 +4229,13 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4716/providers/Microsoft.Compute/availabilitySets/test-aset8453?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0bab2cbec024096d74aed877a6afebcb", + "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, @@ -4237,7 +4243,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 11 Jun 2021 00:11:34 GMT", + "Date": "Mon, 14 Jun 2021 23:38:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4246,25 +4252,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0bab2cbec024096d74aed877a6afebcb", - "x-ms-correlation-request-id": "a3294d89-a1d5-42fe-87eb-7a0bbb578cbe", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1170", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-request-id": "b05d5990-5bf2-4bb1-a71d-efef6fe9ad85", - "x-ms-routing-request-id": "WESTUS2:20210611T001135Z:a3294d89-a1d5-42fe-87eb-7a0bbb578cbe" + "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-aset8889?api-version=2021-04-01", + "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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dc851b027706f120ec1474a4fbb1dd8f", + "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": { @@ -4283,15 +4289,15 @@ "Cache-Control": "no-cache", "Content-Length": "97", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "8cf5157c-74ce-4768-9a68-006af273b7ad", + "x-ms-correlation-request-id": "a8043495-0f3e-4369-9e4b-5c9f7a4a58fd", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "8cf5157c-74ce-4768-9a68-006af273b7ad", - "x-ms-routing-request-id": "WESTUS2:20210611T001135Z:8cf5157c-74ce-4768-9a68-006af273b7ad" + "x-ms-request-id": "a8043495-0f3e-4369-9e4b-5c9f7a4a58fd", + "x-ms-routing-request-id": "WESTUS2:20210614T233839Z:a8043495-0f3e-4369-9e4b-5c9f7a4a58fd" }, "ResponseBody": { "error": { @@ -4302,7 +4308,7 @@ } ], "Variables": { - "RandomSeed": "1610509202", + "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/GenericResourceOperationsTests/StartRemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json index 89634f27518c..9bb0667a728a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json @@ -6,8 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c6c9f0f2b8b7daeee7740fadbc9fbb50", + "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, @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:29: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": "e0997278-541e-4024-913a-998bed950692", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "e0997278-541e-4024-913a-998bed950692", - "x-ms-routing-request-id": "WESTUS2:20210610T232936Z:e0997278-541e-4024-913a-998bed950692" + "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", @@ -46,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9019?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-923b563452ba7444841187c461b91f74-30f38d918fbf6a43-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "324a95eb0a8b0e771eba9fd61c00c231", + "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": { @@ -65,21 +66,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:29:36 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": "bf9202a4-f382-4e45-b601-8ce76e73cdf3", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "bf9202a4-f382-4e45-b601-8ce76e73cdf3", - "x-ms-routing-request-id": "WESTUS2:20210610T232937Z:bf9202a4-f382-4e45-b601-8ce76e73cdf3" + "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/testrg9019", - "name": "testrg9019", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg595", + "name": "testrg595", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "8d769f3fed1692d0f250ad7af5693224", + "x-ms-client-request-id": "262395939c8f8df95b59fd64569cdd03", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:29:36 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": "f30e4aa5-1ac9-4212-8499-cc1cb104f22e", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "f30e4aa5-1ac9-4212-8499-cc1cb104f22e", - "x-ms-routing-request-id": "WESTUS2:20210610T232937Z:f30e4aa5-1ac9-4212-8499-cc1cb104f22e" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-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", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4dffb5a367d352e6b799fd4f04ca744c", + "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": { @@ -4187,9 +4193,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "407", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:29:37 GMT", + "Date": "Mon, 14 Jun 2021 23:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4dffb5a367d352e6b799fd4f04ca744c", - "x-ms-correlation-request-id": "57d7a35d-3850-4802-a7f0-20a95f25af4a", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1184", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "c95065cb-835b-4f9c-b4c7-04958f317e71", - "x-ms-routing-request-id": "WESTUS2:20210610T232937Z:57d7a35d-3850-4802-a7f0-20a95f25af4a" + "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-aset4455\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\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", @@ -4223,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-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": "152", + "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4b79b26de4c2d8a6b823d57df0808e27", + "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": { @@ -4244,16 +4250,15 @@ }, "location": "West US 2", "tags": { - "k1": "v1", - "k2": "v2" + "key": "value" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "445", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:29:37 GMT", + "Date": "Mon, 14 Jun 2021 23:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4262,22 +4267,21 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4b79b26de4c2d8a6b823d57df0808e27", - "x-ms-correlation-request-id": "cce39123-829b-4514-abf8-640c4a786dd1", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1182", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "86bde520-3cb7-4df9-a8ba-23ea49b03fac", - "x-ms-routing-request-id": "WESTUS2:20210610T232938Z:cce39123-829b-4514-abf8-640c4a786dd1" + "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-aset4455\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\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", - " \u0022k1\u0022: \u0022v1\u0022,\r\n", - " \u0022k2\u0022: \u0022v2\u0022\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", " },\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", @@ -4290,15 +4294,16 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-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": "142", + "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "51e2ad6f285196899b8762b65657b7f9", + "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": { @@ -4310,16 +4315,14 @@ "name": "Aligned" }, "location": "West US 2", - "tags": { - "k2": "v2" - } + "tags": {} }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "428", + "Content-Length": "407", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:29:38 GMT", + "Date": "Mon, 14 Jun 2021 23:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4328,22 +4331,20 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "51e2ad6f285196899b8762b65657b7f9", - "x-ms-correlation-request-id": "780083e0-19f4-4301-82b9-4a3eb24c13fb", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1180", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "ec725386-9fff-4dcd-bd46-2ddf0b8a103d", - "x-ms-routing-request-id": "WESTUS2:20210610T232938Z:780083e0-19f4-4301-82b9-4a3eb24c13fb" + "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-aset4455\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\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", - " \u0022k2\u0022: \u0022v2\u0022\r\n", - " },\r\n", + " \u0022tags\u0022: {},\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", " \u0022platformFaultDomainCount\u0022: 2\r\n", @@ -4356,7 +4357,7 @@ } ], "Variables": { - "RandomSeed": "604032343", + "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/GenericResourceOperationsTests/StartRemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json index eec96e03b827..f6ecb2f2e2db 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c6c9f0f2b8b7daeee7740fadbc9fbb50", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "bd4a3dd3-85dc-41b1-84b9-2e85dcd13e39", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "bd4a3dd3-85dc-41b1-84b9-2e85dcd13e39", - "x-ms-routing-request-id": "WESTUS2:20210611T001135Z:bd4a3dd3-85dc-41b1-84b9-2e85dcd13e39" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9019?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-9cd2069d024665438de7002ff3ce18d2-af47df6417d8364b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "324a95eb0a8b0e771eba9fd61c00c231", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "c43a6dba-552a-4201-84cb-4bbbd655ef3a", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-request-id": "c43a6dba-552a-4201-84cb-4bbbd655ef3a", - "x-ms-routing-request-id": "WESTUS2:20210611T001136Z:c43a6dba-552a-4201-84cb-4bbbd655ef3a" + "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/testrg9019", - "name": "testrg9019", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1014", + "name": "testrg1014", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,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": "8d769f3fed1692d0f250ad7af5693224", + "x-ms-client-request-id": "f30f5c92dacd66bfc948ee2d4ef04a66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "ab86344c-378d-45c3-8708-62c68984f490", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "ab86344c-378d-45c3-8708-62c68984f490", - "x-ms-routing-request-id": "WESTUS2:20210611T001136Z:ab86344c-378d-45c3-8708-62c68984f490" + "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", @@ -2417,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4dffb5a367d352e6b799fd4f04ca744c", + "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": { @@ -4189,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:36 GMT", + "Date": "Mon, 14 Jun 2021 23:38:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4dffb5a367d352e6b799fd4f04ca744c", - "x-ms-correlation-request-id": "07474c20-4803-47a4-9bd9-02a71b7b2a6e", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1132", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-request-id": "7547b06a-e23a-4e70-b341-18de06369060", - "x-ms-routing-request-id": "WESTUS2:20210611T001137Z:07474c20-4803-47a4-9bd9-02a71b7b2a6e" + "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-aset4455\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\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", @@ -4223,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-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": "152", + "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4b79b26de4c2d8a6b823d57df0808e27", + "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": { @@ -4244,16 +4251,15 @@ }, "location": "West US 2", "tags": { - "k1": "v1", - "k2": "v2" + "key": "value" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "445", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:36 GMT", + "Date": "Mon, 14 Jun 2021 23:38:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4262,22 +4268,21 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4b79b26de4c2d8a6b823d57df0808e27", - "x-ms-correlation-request-id": "41d21f2f-f661-46e3-90b2-5ec691320cd9", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;222,Microsoft.Compute/PutVM30Min;1131", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "5ab1c81f-cc0a-46bc-9813-d5851fd00e42", - "x-ms-routing-request-id": "WESTUS2:20210611T001137Z:41d21f2f-f661-46e3-90b2-5ec691320cd9" + "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-aset4455\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\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", - " \u0022k1\u0022: \u0022v1\u0022,\r\n", - " \u0022k2\u0022: \u0022v2\u0022\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", " },\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", @@ -4290,15 +4295,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455?api-version=2021-04-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": "142", + "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "51e2ad6f285196899b8762b65657b7f9", + "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": { @@ -4310,16 +4315,14 @@ "name": "Aligned" }, "location": "West US 2", - "tags": { - "k2": "v2" - } + "tags": {} }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "428", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:37 GMT", + "Date": "Mon, 14 Jun 2021 23:38:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4328,22 +4331,20 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "51e2ad6f285196899b8762b65657b7f9", - "x-ms-correlation-request-id": "a8d8f07d-9bd5-4820-85e2-8b3c75110c40", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;221,Microsoft.Compute/PutVM30Min;1130", - "x-ms-ratelimit-remaining-subscription-writes": "1175", - "x-ms-request-id": "f3699e56-746a-4748-96c7-00a026ce05a7", - "x-ms-routing-request-id": "WESTUS2:20210611T001138Z:a8d8f07d-9bd5-4820-85e2-8b3c75110c40" + "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-aset4455\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9019/providers/Microsoft.Compute/availabilitySets/test-aset4455\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", - " \u0022k2\u0022: \u0022v2\u0022\r\n", - " },\r\n", + " \u0022tags\u0022: {},\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", " \u0022platformFaultDomainCount\u0022: 2\r\n", @@ -4356,7 +4357,7 @@ } ], "Variables": { - "RandomSeed": "604032343", + "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/GenericResourceOperationsTests/StartSetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json index cc73d711125f..5f92f9c5e9a9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json @@ -6,8 +6,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "317bf0b353b24dcbcddda3cf0f437767", + "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, @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:22:00 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": "a409861f-0d4c-44a7-aac2-edcd510bffeb", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "a409861f-0d4c-44a7-aac2-edcd510bffeb", - "x-ms-routing-request-id": "WESTUS2:20210610T232201Z:a409861f-0d4c-44a7-aac2-edcd510bffeb" + "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", @@ -46,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5427?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-520bcd1aff79064b948b998804c25fc9-6d83fa7da881a247-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "71ea5abd7a2e87c25e13b4fe9d31cc74", + "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": { @@ -67,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:22:01 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": "6bc19bf6-277f-4ef7-bf2e-0eef67d4c5ad", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "6bc19bf6-277f-4ef7-bf2e-0eef67d4c5ad", - "x-ms-routing-request-id": "WESTUS2:20210610T232202Z:6bc19bf6-277f-4ef7-bf2e-0eef67d4c5ad" + "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/testrg5427", - "name": "testrg5427", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6593", + "name": "testrg6593", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,26 +95,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-40453d2890038c44b3d6f2acfa2b4124-a3c3783e4c98864e-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": "5b8cbb0aab2e2340bbf25f2efcc979ba", + "x-ms-client-request-id": "cc355f4fcc22190a6359a9702ad8e5fb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:22:02 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": "9b314183-8915-47e4-bb88-45c831bb5541", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "9b314183-8915-47e4-bb88-45c831bb5541", - "x-ms-routing-request-id": "WESTUS2:20210610T232202Z:9b314183-8915-47e4-bb88-45c831bb5541" + "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", @@ -2418,6 +2418,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2467,6 +2468,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2516,6 +2518,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2565,6 +2568,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2614,6 +2618,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4163,16 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320?api-version=2021-04-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-40453d2890038c44b3d6f2acfa2b4124-dac78f11170df642-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "495c772a85f4b875a95440164e30acd7", + "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": { @@ -4191,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:22:02 GMT", + "Date": "Mon, 14 Jun 2021 23:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4200,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "495c772a85f4b875a95440164e30acd7", - "x-ms-correlation-request-id": "e051c9f8-ab01-4db6-91e3-38842e2bd6b0", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1193", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "2b0bcc21-6121-45bb-a8bf-49c401e97dbf", - "x-ms-routing-request-id": "WESTUS2:20210610T232203Z:e051c9f8-ab01-4db6-91e3-38842e2bd6b0" + "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-aset9320\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320\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", @@ -4225,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ba72443b2a70850c45d3b1da6a29d48a", + "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": { @@ -4254,7 +4258,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Jun 2021 23:22:03 GMT", + "Date": "Mon, 14 Jun 2021 23:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4263,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ba72443b2a70850c45d3b1da6a29d48a", - "x-ms-correlation-request-id": "bb65172e-b566-4c52-baad-2c88d19eb601", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1191", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "f2b0efb1-66b9-4b35-b130-9896bb747a2e", - "x-ms-routing-request-id": "WESTUS2:20210610T232203Z:bb65172e-b566-4c52-baad-2c88d19eb601" + "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-aset9320\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320\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", @@ -4291,7 +4295,7 @@ } ], "Variables": { - "RandomSeed": "494142395", + "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/GenericResourceOperationsTests/StartSetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json index 64b2f725ae09..057883ae994e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "317bf0b353b24dcbcddda3cf0f437767", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "47716419-087c-42a4-b5c1-064639024871", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "47716419-087c-42a4-b5c1-064639024871", - "x-ms-routing-request-id": "WESTUS2:20210611T001138Z:47716419-087c-42a4-b5c1-064639024871" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5427?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-a6e8df1c7cbc8d4290a1dcf37e158135-a070345b6e24684b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "71ea5abd7a2e87c25e13b4fe9d31cc74", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "3c7b5513-415a-4b0f-b6fc-bd4ea7858308", - "x-ms-ratelimit-remaining-subscription-writes": "1174", - "x-ms-request-id": "3c7b5513-415a-4b0f-b6fc-bd4ea7858308", - "x-ms-routing-request-id": "WESTUS2:20210611T001139Z:3c7b5513-415a-4b0f-b6fc-bd4ea7858308" + "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/testrg5427", - "name": "testrg5427", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8741", + "name": "testrg8741", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "5b8cbb0aab2e2340bbf25f2efcc979ba", + "x-ms-client-request-id": "d168890be60f70501e36142a85a897f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11: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": "ed412ccb-124f-4927-bd76-aada349f895f", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "ed412ccb-124f-4927-bd76-aada349f895f", - "x-ms-routing-request-id": "WESTUS2:20210611T001139Z:ed412ccb-124f-4927-bd76-aada349f895f" + "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", @@ -2417,6 +2417,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2467,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2517,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2567,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2617,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4167,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "495c772a85f4b875a95440164e30acd7", + "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": { @@ -4189,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:39 GMT", + "Date": "Mon, 14 Jun 2021 23:38:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "495c772a85f4b875a95440164e30acd7", - "x-ms-correlation-request-id": "afc34c8e-a095-49bb-932a-01425f1ed235", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;220,Microsoft.Compute/PutVM30Min;1129", - "x-ms-ratelimit-remaining-subscription-writes": "1173", - "x-ms-request-id": "e139bc04-43a5-4555-a466-f1b8750a1998", - "x-ms-routing-request-id": "WESTUS2:20210611T001140Z:afc34c8e-a095-49bb-932a-01425f1ed235" + "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-aset9320\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320\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", @@ -4223,15 +4229,16 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ba72443b2a70850c45d3b1da6a29d48a", + "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": { @@ -4252,7 +4259,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:40 GMT", + "Date": "Mon, 14 Jun 2021 23:38:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4261,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ba72443b2a70850c45d3b1da6a29d48a", - "x-ms-correlation-request-id": "3df9a904-d4aa-4af5-b3ed-7fb8e9711888", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;219,Microsoft.Compute/PutVM30Min;1128", - "x-ms-ratelimit-remaining-subscription-writes": "1172", - "x-ms-request-id": "fc30b0ea-48b4-47ff-be71-f4c7398e2070", - "x-ms-routing-request-id": "WESTUS2:20210611T001140Z:3df9a904-d4aa-4af5-b3ed-7fb8e9711888" + "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-aset9320\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5427/providers/Microsoft.Compute/availabilitySets/test-aset9320\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", @@ -4289,7 +4296,7 @@ } ], "Variables": { - "RandomSeed": "494142395", + "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/GenericResourceOperationsTests/StartUpdate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json index 8e287dea83a7..9676aa4fcfd7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c1fee53544a7725cd539bc325d7f4304", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:09:14 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": "ead10150-9f4e-47b2-a96d-b4c5b0fd9d6a", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "ead10150-9f4e-47b2-a96d-b4c5b0fd9d6a", - "x-ms-routing-request-id": "WESTUS2:20210611T000914Z:ead10150-9f4e-47b2-a96d-b4c5b0fd9d6a" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2012?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-1248002286a35e4ebe93d9cbe7067a94-c1665952a13b674c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "06121ac8d13650892e985d08f87ff7b3", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:09:15 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": "ddda4c87-4ff1-4ca4-8abc-44671925b306", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "ddda4c87-4ff1-4ca4-8abc-44671925b306", - "x-ms-routing-request-id": "WESTUS2:20210611T000915Z:ddda4c87-4ff1-4ca4-8abc-44671925b306" + "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/testrg2012", - "name": "testrg2012", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4295", + "name": "testrg4295", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "612532c0c4924197e17c50fdec27e29a", + "x-ms-client-request-id": "285968e9610a169e6e937505ff416a84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:09:15 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": "1d089298-42c1-40f8-bd51-5c779ea12d9b", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "1d089298-42c1-40f8-bd51-5c779ea12d9b", - "x-ms-routing-request-id": "WESTUS2:20210611T000915Z:1d089298-42c1-40f8-bd51-5c779ea12d9b" + "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", @@ -2417,6 +2417,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2467,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2517,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2567,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2617,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043?api-version=2021-04-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.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4cf614c1fe2d75147078acfe6addbac4", + "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": { @@ -4187,9 +4192,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:09:16 GMT", + "Date": "Mon, 14 Jun 2021 23:38:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4cf614c1fe2d75147078acfe6addbac4", - "x-ms-correlation-request-id": "ba7db427-90ca-4d40-a504-e43940787e86", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1140", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "2460cae4-3c22-4667-9317-8cc3f62e8944", - "x-ms-routing-request-id": "WESTUS2:20210611T000916Z:ba7db427-90ca-4d40-a504-e43940787e86" + "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-aset1043\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043\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", @@ -4223,27 +4228,36 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043?api-version=2021-04-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": "34", + "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6a376d7b6601c1a01eb0f0191798d603", + "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": { - "location": "East US 2", - "tags": {} + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "430", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:09:16 GMT", + "Date": "Mon, 14 Jun 2021 23:38:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4252,20 +4266,22 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6a376d7b6601c1a01eb0f0191798d603", - "x-ms-correlation-request-id": "84b25767-6d8e-4e17-aa5d-40bb02c22e73", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1138", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "4943323b-c768-4191-8218-6a6ad726c47a", - "x-ms-routing-request-id": "WESTUS2:20210611T000916Z:84b25767-6d8e-4e17-aa5d-40bb02c22e73" + "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-aset1043\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043\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", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", " \u0022platformFaultDomainCount\u0022: 2\r\n", @@ -4278,7 +4294,7 @@ } ], "Variables": { - "RandomSeed": "1848329225", + "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/GenericResourceOperationsTests/StartUpdate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json index fd4140f0f586..8be9ef5bd0b5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c1fee53544a7725cd539bc325d7f4304", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:40 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": "da140ed1-7474-450d-adbc-4db447a77fb6", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "da140ed1-7474-450d-adbc-4db447a77fb6", - "x-ms-routing-request-id": "WESTUS2:20210611T001141Z:da140ed1-7474-450d-adbc-4db447a77fb6" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2012?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-4e7675dc804cb44f9d0c7ea52dfcc836-c70b8df6ac517946-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "06121ac8d13650892e985d08f87ff7b3", + "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": { @@ -67,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:41 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": "b347c229-82ff-47ba-9c01-3d7fdcd3ba81", - "x-ms-ratelimit-remaining-subscription-writes": "1171", - "x-ms-request-id": "b347c229-82ff-47ba-9c01-3d7fdcd3ba81", - "x-ms-routing-request-id": "WESTUS2:20210611T001142Z:b347c229-82ff-47ba-9c01-3d7fdcd3ba81" + "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/testrg2012", - "name": "testrg2012", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4371", + "name": "testrg4371", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "612532c0c4924197e17c50fdec27e29a", + "x-ms-client-request-id": "34792600f0c8b1d5cb85bd53e80c7608", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:41 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": "27200fd5-caaa-4811-9102-86df23a4bdfb", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "27200fd5-caaa-4811-9102-86df23a4bdfb", - "x-ms-routing-request-id": "WESTUS2:20210611T001142Z:27200fd5-caaa-4811-9102-86df23a4bdfb" + "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", @@ -2417,6 +2417,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2467,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2517,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2567,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2617,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043?api-version=2021-04-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", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4cf614c1fe2d75147078acfe6addbac4", + "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": { @@ -4189,7 +4194,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:42 GMT", + "Date": "Mon, 14 Jun 2021 23:38:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4cf614c1fe2d75147078acfe6addbac4", - "x-ms-correlation-request-id": "5b871304-8478-41ab-b820-5d2ee37f4e40", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;218,Microsoft.Compute/PutVM30Min;1127", - "x-ms-ratelimit-remaining-subscription-writes": "1170", - "x-ms-request-id": "e0faf734-da43-410b-8cf4-d292270a72b0", - "x-ms-routing-request-id": "WESTUS2:20210611T001143Z:5b871304-8478-41ab-b820-5d2ee37f4e40" + "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-aset1043\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043\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", @@ -4223,27 +4228,37 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043?api-version=2021-04-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": "34", + "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6a376d7b6601c1a01eb0f0191798d603", + "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": { - "location": "East US 2", - "tags": {} + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:42 GMT", + "Date": "Mon, 14 Jun 2021 23:38:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4252,20 +4267,22 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6a376d7b6601c1a01eb0f0191798d603", - "x-ms-correlation-request-id": "feef965e-c665-4d71-b042-058cba389591", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;217,Microsoft.Compute/PutVM30Min;1126", - "x-ms-ratelimit-remaining-subscription-writes": "1169", - "x-ms-request-id": "19173d8c-f680-47c8-b1e8-c174d26f801b", - "x-ms-routing-request-id": "WESTUS2:20210611T001143Z:feef965e-c665-4d71-b042-058cba389591" + "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-aset1043\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2012/providers/Microsoft.Compute/availabilitySets/test-aset1043\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", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", " \u0022platformFaultDomainCount\u0022: 2\r\n", @@ -4278,7 +4295,7 @@ } ], "Variables": { - "RandomSeed": "1848329225", + "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/GenericResourceOperationsTests/Update().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json index 49471f40739a..2f03e1b9117c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "77a54813c79d3e0b8d5fb832bf1138c3", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:07:47 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": "6b7dbeb6-26bb-4a58-9628-1fe1b45e102b", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "6b7dbeb6-26bb-4a58-9628-1fe1b45e102b", - "x-ms-routing-request-id": "WESTUS2:20210611T000747Z:6b7dbeb6-26bb-4a58-9628-1fe1b45e102b" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg827?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-5550f1d84b9e8c47abb2d1374d868e59-a2cf6f01b2e2d244-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5feba28d0858f4c07a4764febe86a73e", + "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": { @@ -65,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, 11 Jun 2021 00:07:48 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": "53e1cc7d-49be-452b-b582-6be83493fdd5", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "53e1cc7d-49be-452b-b582-6be83493fdd5", - "x-ms-routing-request-id": "WESTUS2:20210611T000748Z:53e1cc7d-49be-452b-b582-6be83493fdd5" + "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/testrg827", - "name": "testrg827", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3702", + "name": "testrg3702", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -94,26 +94,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e8414ae65502094498ce58211e77c57e-77dfce17db88f749-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": "a76979a3c8356c8eecdd25bf38aded62", + "x-ms-client-request-id": "b20760e62f960e6afd2a271008faba28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:07:48 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": "53e5cf9e-2cb2-4055-a736-1a3c5a79ff5f", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "53e5cf9e-2cb2-4055-a736-1a3c5a79ff5f", - "x-ms-routing-request-id": "WESTUS2:20210611T000749Z:53e5cf9e-2cb2-4055-a736-1a3c5a79ff5f" + "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", @@ -2418,6 +2417,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2467,6 +2467,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2516,6 +2517,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2565,6 +2567,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2614,6 +2617,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4163,16 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784?api-version=2021-04-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", - "traceparent": "00-e8414ae65502094498ce58211e77c57e-d6e6a0ed54e28a45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fa86f5bbba65e43f83237fa740ced911", + "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": { @@ -4189,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, 11 Jun 2021 00:07:49 GMT", + "Date": "Mon, 14 Jun 2021 23:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4200,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fa86f5bbba65e43f83237fa740ced911", - "x-ms-correlation-request-id": "26515ce8-bd57-4362-8d93-7e4ae5edf890", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1143", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "74af1feb-3b2d-4b5d-bb92-aa89489642cc", - "x-ms-routing-request-id": "WESTUS2:20210611T000749Z:26515ce8-bd57-4362-8d93-7e4ae5edf890" + "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-aset9784\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784\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", @@ -4225,27 +4228,36 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784?api-version=2021-04-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": "34", + "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "90039b764420e8473985241248e62c1d", + "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": { - "location": "East US 2", - "tags": {} + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "407", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:07:49 GMT", + "Date": "Mon, 14 Jun 2021 23:38:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4254,20 +4266,22 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "90039b764420e8473985241248e62c1d", - "x-ms-correlation-request-id": "be6b1faa-2799-49f8-b2b0-3b01c866d457", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1141", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "d38acffd-1601-49bc-a79b-94e145920ce3", - "x-ms-routing-request-id": "WESTUS2:20210611T000750Z:be6b1faa-2799-49f8-b2b0-3b01c866d457" + "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-aset9784\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784\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", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", " \u0022platformFaultDomainCount\u0022: 2\r\n", @@ -4280,7 +4294,7 @@ } ], "Variables": { - "RandomSeed": "1294723523", + "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/GenericResourceOperationsTests/Update()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json index 537944922395..0c9f943be9fe 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "77a54813c79d3e0b8d5fb832bf1138c3", + "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, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:43 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": "bcc53240-7d30-4368-99fc-1b0a0cb48193", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "bcc53240-7d30-4368-99fc-1b0a0cb48193", - "x-ms-routing-request-id": "WESTUS2:20210611T001143Z:bcc53240-7d30-4368-99fc-1b0a0cb48193" + "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", @@ -46,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg827?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-c8da47c011e60648a3d3c1293950689d-2a8618418af28d44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5feba28d0858f4c07a4764febe86a73e", + "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": { @@ -65,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, 11 Jun 2021 00:11:43 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": "8293d5e6-9f88-4c9a-be5f-90da412f2b09", - "x-ms-ratelimit-remaining-subscription-writes": "1168", - "x-ms-request-id": "8293d5e6-9f88-4c9a-be5f-90da412f2b09", - "x-ms-routing-request-id": "WESTUS2:20210611T001144Z:8293d5e6-9f88-4c9a-be5f-90da412f2b09" + "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/testrg827", - "name": "testrg827", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5800", + "name": "testrg5800", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,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": "a76979a3c8356c8eecdd25bf38aded62", + "x-ms-client-request-id": "2c5af1692f1fd74da5bba4e5cb2d29a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "53948", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:43 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": "3440ebdc-d754-41be-8a36-22cd18fe0a25", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "3440ebdc-d754-41be-8a36-22cd18fe0a25", - "x-ms-routing-request-id": "WESTUS2:20210611T001144Z:3440ebdc-d754-41be-8a36-22cd18fe0a25" + "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", @@ -2417,6 +2417,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2466,6 +2467,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2515,6 +2517,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2564,6 +2567,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2613,6 +2617,7 @@ "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -4162,15 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784?api-version=2021-04-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", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fa86f5bbba65e43f83237fa740ced911", + "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": { @@ -4187,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, 11 Jun 2021 00:11:44 GMT", + "Date": "Mon, 14 Jun 2021 23:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4198,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fa86f5bbba65e43f83237fa740ced911", - "x-ms-correlation-request-id": "ae79ca87-cfab-41a4-b702-116a43061061", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;216,Microsoft.Compute/PutVM30Min;1125", - "x-ms-ratelimit-remaining-subscription-writes": "1167", - "x-ms-request-id": "41f105af-b867-45d1-94fe-7dd32bf920ce", - "x-ms-routing-request-id": "WESTUS2:20210611T001145Z:ae79ca87-cfab-41a4-b702-116a43061061" + "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-aset9784\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784\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", @@ -4223,27 +4228,36 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784?api-version=2021-04-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": "34", + "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210608.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "90039b764420e8473985241248e62c1d", + "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": { - "location": "East US 2", - "tags": {} + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": { + "key": "value" + } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "407", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 11 Jun 2021 00:11:46 GMT", + "Date": "Mon, 14 Jun 2021 23:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4252,20 +4266,22 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "90039b764420e8473985241248e62c1d", - "x-ms-correlation-request-id": "278786d3-c46f-4fcf-a5af-bc9180503ba4", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;215,Microsoft.Compute/PutVM30Min;1124", - "x-ms-ratelimit-remaining-subscription-writes": "1166", - "x-ms-request-id": "f075b5d0-864d-48a6-baf9-617099023c69", - "x-ms-routing-request-id": "WESTUS2:20210611T001146Z:278786d3-c46f-4fcf-a5af-bc9180503ba4" + "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-aset9784\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg827/providers/Microsoft.Compute/availabilitySets/test-aset9784\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", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", " \u0022properties\u0022: {\r\n", " \u0022platformUpdateDomainCount\u0022: 5,\r\n", " \u0022platformFaultDomainCount\u0022: 2\r\n", @@ -4278,7 +4294,7 @@ } ], "Variables": { - "RandomSeed": "1294723523", + "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/AddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag().json deleted file mode 100644 index 70a60d643049..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag().json +++ /dev/null @@ -1,4136 +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": "c9f11469da0c4122807d2988105f785a", - "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:16:14 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" - }, - "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/testrg8806?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", - "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": "Fri, 07 May 2021 21:16:14 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806", - "name": "testrg8806", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fb5b9065fe69504d968595328f30cc49-67b7b8ce6d79ac48-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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:14 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1387256580", - "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/GenericResourceTests/AddTag()Async.json deleted file mode 100644 index 8712ee7ba025..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag()Async.json +++ /dev/null @@ -1,4134 +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": "c9f11469da0c4122807d2988105f785a", - "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:16:14 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" - }, - "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/testrg8806?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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:15 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806", - "name": "testrg8806", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "871e72604615218a9e8d5a26269b02c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:15 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1387256580", - "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/GenericResourceTests/Delete().json deleted file mode 100644 index 475b348d5021..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete().json +++ /dev/null @@ -1,4104 +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": "a428d36227e2c0e08e1efb284c5d42d9", - "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:16:16 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" - }, - "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/testrg709?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", - "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": "Fri, 07 May 2021 21:16:17 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg709", - "name": "testrg709", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:17 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg709/providers/Microsoft.Compute/availabilitySets/test-aset539?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "405", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg709/providers/Microsoft.Compute/availabilitySets/test-aset539?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 07 May 2021 21:16:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "1710432852", - "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/GenericResourceTests/Delete()Async.json deleted file mode 100644 index d1704f6d8492..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete()Async.json +++ /dev/null @@ -1,4102 +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": "fbbd09f81d367dfd186318e6469f24e6", - "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:16:17 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" - }, - "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/testrg2780?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", - "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": "Fri, 07 May 2021 21:16:17 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2780", - "name": "testrg2780", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "477fb92c368ef56cd9e10abf0868593b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:18 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2780/providers/Microsoft.Compute/availabilitySets/test-aset9720?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2780/providers/Microsoft.Compute/availabilitySets/test-aset9720?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 07 May 2021 21:16:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "1755045381", - "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 diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get().json deleted file mode 100644 index 786d488d9aa6..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get().json +++ /dev/null @@ -1,4120 +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", - "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", - "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:16:20 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" - }, - "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/testrg7126?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", - "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": "Fri, 07 May 2021 21:16:20 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7126", - "name": "testrg7126", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c278dd4214319efaf1cc852645cd2821", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:20 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7126/providers/Microsoft.Compute/availabilitySets/test-aset1147?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7126/providers/Microsoft.Compute/availabilitySets/test-aset1147?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "436", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1689496279", - "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/GenericResourceTests/Get()Async.json deleted file mode 100644 index 9b355f3dc5b8..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get()Async.json +++ /dev/null @@ -1,4121 +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": "405e92b7daaa3088b4b6734a0148631e", - "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:16:20 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" - }, - "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/testrg9643?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", - "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": "Fri, 07 May 2021 21:16:20 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9643", - "name": "testrg9643", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-60190a8d5687b14295acd3eaa1ef8dd3-0357dd9a4e3d1849-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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:20 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9643/providers/Microsoft.Compute/availabilitySets/test-aset1983?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9643/providers/Microsoft.Compute/availabilitySets/test-aset1983?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "436", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1157943567", - "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/GenericResourceTests/RemoveTag().json deleted file mode 100644 index 09dc9aa3530d..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag().json +++ /dev/null @@ -1,4196 +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", - "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", - "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:16:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "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/testrg5719?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", - "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": "Fri, 07 May 2021 21:16:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719", - "name": "testrg5719", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bbebbd990c4a66c56d2ae81da54c1879", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1249235556", - "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/GenericResourceTests/RemoveTag()Async.json deleted file mode 100644 index ee3722f4e280..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag()Async.json +++ /dev/null @@ -1,4197 +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": "1a4113c86032be14ae75d74a3d732e6d", - "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:16:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "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/testrg4063?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", - "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": "Fri, 07 May 2021 21:16:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063", - "name": "testrg4063", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "949567127", - "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/GenericResourceTests/SetTags().json deleted file mode 100644 index 576e27db982f..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags().json +++ /dev/null @@ -1,4135 +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", - "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", - "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:16:24 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" - }, - "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/testrg3001?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", - "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": "Fri, 07 May 2021 21:16:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3001", - "name": "testrg3001", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "491cff3364f38a9d0977c2ea856c309f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3001/providers/Microsoft.Compute/availabilitySets/test-aset3159?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3001/providers/Microsoft.Compute/availabilitySets/test-aset3159?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "232977705", - "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/GenericResourceTests/SetTags()Async.json deleted file mode 100644 index 4da8833bc1be..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags()Async.json +++ /dev/null @@ -1,4136 +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": "b5c4dd3a87e2cb8f4335b879b4d66d95", - "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:16:24 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" - }, - "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/testrg8431?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", - "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": "Fri, 07 May 2021 21:16:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8431", - "name": "testrg8431", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8431/providers/Microsoft.Compute/availabilitySets/test-aset1776?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8431/providers/Microsoft.Compute/availabilitySets/test-aset1776?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "891108958", - "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/GenericResourceTests/StartAddTag().json deleted file mode 100644 index e306e7de365e..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag().json +++ /dev/null @@ -1,4134 +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": "0b807f5832051469bc4aa4a312414119", - "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:16:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "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/testrg3220?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", - "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": "Fri, 07 May 2021 21:16:29 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3220", - "name": "testrg3220", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ed79605139a129f92b3dfc1c23709105", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3220/providers/Microsoft.Compute/availabilitySets/test-aset2377?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3220/providers/Microsoft.Compute/availabilitySets/test-aset2377?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "413494752", - "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/GenericResourceTests/StartAddTag()Async.json deleted file mode 100644 index 51a84acdf43c..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag()Async.json +++ /dev/null @@ -1,4134 +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": "a17cf37b84b5d1cc4257887f6a69cb90", - "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:16:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "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" - }, - "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/testrg5741?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", - "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": "Fri, 07 May 2021 21:16:28 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5741", - "name": "testrg5741", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ab44675943b955fec3bd32a6e5dfbb6a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:28 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5741/providers/Microsoft.Compute/availabilitySets/test-aset5693?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5741/providers/Microsoft.Compute/availabilitySets/test-aset5693?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1865325550", - "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/GenericResourceTests/StartDelete().json deleted file mode 100644 index 5cc1af15b9f5..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete().json +++ /dev/null @@ -1,4104 +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": "fe4cfa30d8a2c06302f27ed15c8c61ad", - "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:16:31 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" - }, - "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/testrg4625?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", - "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": "Fri, 07 May 2021 21:16:31 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4625", - "name": "testrg4625", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3441b0b86656844a9b84e9893e29d7dd-145cf61debf9c442-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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:31 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4625/providers/Microsoft.Compute/availabilitySets/test-aset2427?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:32 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4625/providers/Microsoft.Compute/availabilitySets/test-aset2427?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 07 May 2021 21:16:32 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "1462754536", - "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/GenericResourceTests/StartDelete()Async.json deleted file mode 100644 index 70a47ea08ac6..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete()Async.json +++ /dev/null @@ -1,4103 +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", - "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", - "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:16:32 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" - }, - "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/testrg875?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", - "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": "Fri, 07 May 2021 21:16:32 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg875", - "name": "testrg875", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "36427f3781752290a42ca2b869302198", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:33 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg875/providers/Microsoft.Compute/availabilitySets/test-aset8527?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "407", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg875/providers/Microsoft.Compute/availabilitySets/test-aset8527?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 07 May 2021 21:16:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "1111382645", - "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/GenericResourceTests/StartRemoveTag().json deleted file mode 100644 index daaab11ec3a0..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag().json +++ /dev/null @@ -1,4197 +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": "83533a8ff7f0f40003555c06f2fd2c0c", - "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:16:33 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" - }, - "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/testrg1539?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", - "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": "Fri, 07 May 2021 21:16:34 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539", - "name": "testrg1539", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:34 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "715734451", - "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/GenericResourceTests/StartRemoveTag()Async.json deleted file mode 100644 index 36c8efb4389d..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag()Async.json +++ /dev/null @@ -1,4196 +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", - "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", - "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:16:34 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" - }, - "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/testrg9021?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", - "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": "Fri, 07 May 2021 21:16:35 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021", - "name": "testrg9021", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e08873b0cbf604e76709b97e983bdb89", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:35 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1247287163", - "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/GenericResourceTests/StartSetTags().json deleted file mode 100644 index 8eeffe70f9f1..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags().json +++ /dev/null @@ -1,4136 +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": "508214f5a67c31ccd9dfa274bb96438c", - "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:16:37 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" - }, - "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/testrg7564?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", - "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": "Fri, 07 May 2021 21:16:38 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7564", - "name": "testrg7564", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7564/providers/Microsoft.Compute/availabilitySets/test-aset5543?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7564/providers/Microsoft.Compute/availabilitySets/test-aset5543?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "956944711", - "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/GenericResourceTests/StartSetTags()Async.json deleted file mode 100644 index 70d30c1eccee..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags()Async.json +++ /dev/null @@ -1,4135 +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", - "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", - "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:16:37 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" - }, - "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/testrg6303?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", - "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": "Fri, 07 May 2021 21:16:38 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6303", - "name": "testrg6303", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6fb9b54a229f28be0456944b785cf3af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6303/providers/Microsoft.Compute/availabilitySets/test-aset8885?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6303/providers/Microsoft.Compute/availabilitySets/test-aset8885?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "231029312", - "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/GenericResourceTests/StartUpdate().json deleted file mode 100644 index cdc61ac0337b..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate().json +++ /dev/null @@ -1,4135 +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", - "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", - "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:50 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" - }, - "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/testrg2406?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", - "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": "Fri, 07 May 2021 21:28:51 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2406", - "name": "testrg2406", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3ddd61ef14aace8c3e784539422d3559", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:51 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2406/providers/Microsoft.Compute/availabilitySets/test-aset273?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "406", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2406/providers/Microsoft.Compute/availabilitySets/test-aset273?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "430", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "544021613", - "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/GenericResourceTests/StartUpdate()Async.json deleted file mode 100644 index 2ee4aa365645..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate()Async.json +++ /dev/null @@ -1,4136 +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": "2a3b0b67ae747b09d1f609de64052804", - "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:50 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" - }, - "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/testrg754?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", - "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": "Fri, 07 May 2021 21:28:52 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg754", - "name": "testrg754", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:52 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg754/providers/Microsoft.Compute/availabilitySets/test-aset9150?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "407", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg754/providers/Microsoft.Compute/availabilitySets/test-aset9150?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "431", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "80253047", - "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/GenericResourceTests/Update().json deleted file mode 100644 index 11a98ad336e8..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update().json +++ /dev/null @@ -1,4134 +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": "b6b6ef4537da47932d9f5fdb6701b52d", - "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:55 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" - }, - "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/testrg9245?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", - "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": "Fri, 07 May 2021 21:28:56 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9245", - "name": "testrg9245", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f565682f8a0a9754a4459cc1f9ce65a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9245/providers/Microsoft.Compute/availabilitySets/test-aset1420?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9245/providers/Microsoft.Compute/availabilitySets/test-aset1420?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "2087312513", - "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/GenericResourceTests/Update()Async.json deleted file mode 100644 index b527ca4648cb..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update()Async.json +++ /dev/null @@ -1,4136 +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": "9579379861f99dc1dd66f902a1607051", - "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:54 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" - }, - "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/testrg2997?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", - "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": "Fri, 07 May 2021 21:28:55 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2997", - "name": "testrg2997", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "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-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "52395", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:55 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" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West" - ], - "apiVersions": [ - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "Norway East", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2997/providers/Microsoft.Compute/availabilitySets/test-aset5320?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2997/providers/Microsoft.Compute/availabilitySets/test-aset5320?api-version=2021-03-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", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "West US 2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-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" - }, - "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", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "291200757", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file